diff options
author | wishmaster51@gmail.com <wishmaster51@gmail.com@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2012-03-23 11:35:09 +0000 |
---|---|---|
committer | wishmaster51@gmail.com <wishmaster51@gmail.com@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2012-03-23 11:35:09 +0000 |
commit | f61db0e321fc405b459dafe87fe55e731559dc4a (patch) | |
tree | 03cff479a82f46c6dbb9ad865189d72bdf3db667 /Plugins/avatarhistory/popup.cpp | |
parent | b81e14343d215b93c7b6fde1f30dff77bdd9b2b5 (diff) |
Some fixes reported by borkra (thanks!)
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@241 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/avatarhistory/popup.cpp')
-rw-r--r-- | Plugins/avatarhistory/popup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/avatarhistory/popup.cpp b/Plugins/avatarhistory/popup.cpp index 116833f..f67d07f 100644 --- a/Plugins/avatarhistory/popup.cpp +++ b/Plugins/avatarhistory/popup.cpp @@ -47,7 +47,7 @@ void InitPopups() hPopupWindow = CreateWindowEx(WS_EX_TOOLWINDOW, _T("static"), _T(MODULE_NAME) _T("_PopupWindow"),
0, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, HWND_DESKTOP,
NULL, hInst, NULL);
- SetWindowLong(hPopupWindow, GWLP_WNDPROC, (LONG)PopupWndProc);
+ SetWindowLong(hPopupWindow, GWLP_WNDPROC, (LONG_PTR)PopupWndProc);
}
|