diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-23 21:09:47 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-23 21:09:55 +0300 |
commit | bfdbaf6f3d1ebf0b255a715a0b0d6626e312eaa4 (patch) | |
tree | 0524ff373da748b483899e4aead07807a7031cf4 /include | |
parent | 53e07c1a2bd9ee7b24a65466dd930c694dcd55e7 (diff) |
fix for a random crash on exit
Diffstat (limited to 'include')
-rw-r--r-- | include/m_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_utils.h b/include/m_utils.h index 224fe5f859..567e9689a6 100644 --- a/include/m_utils.h +++ b/include/m_utils.h @@ -132,7 +132,7 @@ EXTERN_C MIR_CORE_DLL(MWindowList) WindowList_Create(void); /////////////////////////////////////////////////////////////////////////////////////////
// destroys a window list
-EXTERN_C MIR_CORE_DLL(void) WindowList_Destroy(MWindowList hList);
+EXTERN_C MIR_CORE_DLL(void) WindowList_Destroy(MWindowList &hList);
/////////////////////////////////////////////////////////////////////////////////////////
// adds a window to the specified window list
|