summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/src/svc_reminder.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2012-09-07 15:37:01 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2012-09-07 15:37:01 +0000
commitbdf69f6310f09c90c20512ebe9dfa73ec524da59 (patch)
tree3a9b0372ed8f409ed91e955027c6a259f2517789 /plugins/UserInfoEx/src/svc_reminder.cpp
parent91aff9f4b3e7ca761b42f89d58d72a938c9a4414 (diff)
-minor signature fixes
-fixed path to precompiled headers git-svn-id: http://svn.miranda-ng.org/main/trunk@1545 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/svc_reminder.cpp')
-rw-r--r--plugins/UserInfoEx/src/svc_reminder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/svc_reminder.cpp b/plugins/UserInfoEx/src/svc_reminder.cpp
index f91ba47f33..c26e2027e6 100644
--- a/plugins/UserInfoEx/src/svc_reminder.cpp
+++ b/plugins/UserInfoEx/src/svc_reminder.cpp
@@ -333,7 +333,7 @@ static VOID NotifyWithExtraIcon(HANDLE hContact, const CEvent &evt)
*
* @return message specific
**/
-static INT_PTR CALLBACK PopupWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
+static LRESULT CALLBACK PopupWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
@@ -374,7 +374,7 @@ static INT NotifyWithPopup(HANDLE hContact, CEvent::EType eventType, INT DaysToA
POPUPDATAT_V2 ppd;
ZeroMemory(&ppd, sizeof(POPUPDATAT_V2));
- ppd.PluginWindowProc = (WNDPROC)PopupWindowProc;
+ ppd.PluginWindowProc = PopupWindowProc;
ppd.iSeconds = (INT)DB::Setting::GetByte(SET_POPUP_DELAY, 0);
if (hContact)