diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-05-22 18:28:59 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-05-22 18:28:59 +0000 |
commit | 8fceb2db2ea58d7d105194b4e03a80ddd566ad6e (patch) | |
tree | e34c5ea97eb81391c836916feb0a0938f79d4681 /plugins/GmailNotifier/src/notify.cpp | |
parent | 2091bf8b8faa00b04515677ddde7cf6817196b59 (diff) |
GMailNotifier:
-Fixed hangup in options (fixes #675)
-Fixed Apply button
-ressource fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@9280 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/GmailNotifier/src/notify.cpp')
-rw-r--r-- | plugins/GmailNotifier/src/notify.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/GmailNotifier/src/notify.cpp b/plugins/GmailNotifier/src/notify.cpp index cce1dccc07..a684e5ff0c 100644 --- a/plugins/GmailNotifier/src/notify.cpp +++ b/plugins/GmailNotifier/src/notify.cpp @@ -21,7 +21,7 @@ int OpenBrowser(WPARAM hContact, LPARAM lParam) return FALSE;
}
-INT_PTR Notifying(WPARAM wParam, LPARAM lParam)
+INT_PTR Notifying(WPARAM, LPARAM lParam)
{
OpenBrowser(((CLISTEVENT*)lParam)->hContact, 0);
return 0;
@@ -116,7 +116,7 @@ void NotifyUser(Account *curAcc) ppd.PluginData = NULL;
ppd.iSeconds = opt.popupDuration;
PUDeletePopup(curAcc->popUpHwnd);
- CallService(MS_POPUP_ADDPOPUP, (WPARAM)&ppd, 0);
+ PUAddPopup(&ppd);
}
if (newMails > 0)
SkinPlaySound("Gmail");
@@ -135,7 +135,7 @@ void DeleteResults(resultLink *prst) }
}
-void __cdecl Login_ThreadFunc(LPVOID lpParam)
+void __cdecl Login_ThreadFunc(void *lpParam)
{
if (lpParam == NULL)
return;
|