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/MirFox | |
parent | 2be5844edd93ab3490b4689cad33d75b4c77f3a8 (diff) |
some more fixes for 64-bit version
Diffstat (limited to 'plugins/MirFox')
-rw-r--r-- | plugins/MirFox/src/MirandaUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirFox/src/MirandaUtils.cpp b/plugins/MirFox/src/MirandaUtils.cpp index a149601659..caf5456467 100644 --- a/plugins/MirFox/src/MirandaUtils.cpp +++ b/plugins/MirFox/src/MirandaUtils.cpp @@ -357,7 +357,7 @@ int MirandaUtils::on_hook_OpenMW(WPARAM wParam, LPARAM lParam) }
MessageWindowData mwd;
- if (!Srmm_GetWindowData((WPARAM)param->targetHandle, (LPARAM)&mwd) && mwd.hwndWindow){
+ if (!Srmm_GetWindowData((WPARAM)param->targetHandle, mwd) && mwd.hwndWindow){
HWND parent;
HWND hWnd = mwd.hwndWindow;
while((parent = GetParent(hWnd)) != 0)
|