summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src/msgs.cpp
diff options
context:
space:
mode:
authorRozhuk Ivan <rozhuk.im@gmail.com>2014-03-12 15:45:38 +0000
committerRozhuk Ivan <rozhuk.im@gmail.com>2014-03-12 15:45:38 +0000
commitce11751a330c954e08e2ca4bbe2285bfbc0c4fb3 (patch)
treecbc20f4edcd5aeb3121af80885c78588f43b02c9 /plugins/TabSRMM/src/msgs.cpp
parentc190cc8dd65076e00d3f4aa7bf317048440a40f0 (diff)
More fix for x64
Also fix dbeditor from 8572 commit git-svn-id: http://svn.miranda-ng.org/main/trunk@8584 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/msgs.cpp')
-rw-r--r--plugins/TabSRMM/src/msgs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/msgs.cpp b/plugins/TabSRMM/src/msgs.cpp
index 00536e4e68..d8cc03f78c 100644
--- a/plugins/TabSRMM/src/msgs.cpp
+++ b/plugins/TabSRMM/src/msgs.cpp
@@ -101,7 +101,7 @@ static INT_PTR GetWindowData(WPARAM wParam, LPARAM lParam)
mwod->hwndWindow = hwnd;
mwod->local = GetParent(GetParent(hwnd));
SendMessage(hwnd, DM_GETWINDOWSTATE, 0, 0);
- mwod->uState = (int)GetWindowLongPtr(hwnd, DWLP_MSGRESULT);
+ mwod->uState = GetWindowLongPtr(hwnd, DWLP_MSGRESULT);
return 0;
}
else
@@ -112,7 +112,7 @@ static INT_PTR GetWindowData(WPARAM wParam, LPARAM lParam)
mwod->hwndWindow = si->hWnd;
mwod->local = GetParent(GetParent(si->hWnd));
SendMessage(si->hWnd, DM_GETWINDOWSTATE, 0, 0);
- mwod->uState = (int)GetWindowLongPtr(si->hWnd, DWLP_MSGRESULT);
+ mwod->uState = GetWindowLongPtr(si->hWnd, DWLP_MSGRESULT);
return 0;
}
else {