diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-28 15:56:57 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-28 15:56:57 +0300 |
commit | 1ab93d3afabe3a5872040b5acafc9f113c196a2b (patch) | |
tree | ec309e3cdd8c34e830022525be003278fae0330f /plugins/MirandaG15/src | |
parent | 2be5844edd93ab3490b4689cad33d75b4c77f3a8 (diff) |
some more fixes for 64-bit version
Diffstat (limited to 'plugins/MirandaG15/src')
-rw-r--r-- | plugins/MirandaG15/src/CAppletManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirandaG15/src/CAppletManager.cpp b/plugins/MirandaG15/src/CAppletManager.cpp index b4f00d44ab..6aee1a4f3c 100644 --- a/plugins/MirandaG15/src/CAppletManager.cpp +++ b/plugins/MirandaG15/src/CAppletManager.cpp @@ -789,7 +789,7 @@ MEVENT CAppletManager::SendMessageToContact(MCONTACT hContact, tstring strMessag bool CAppletManager::IsMessageWindowOpen(MCONTACT hContact) { MessageWindowData mwd; - Srmm_GetWindowData(hContact, (LPARAM)&mwd); + Srmm_GetWindowData(hContact, mwd); if (mwd.uState & MSG_WINDOW_STATE_EXISTS) return true; return false; |