diff options
Diffstat (limited to 'plugins/UserInfoEx/src/svc_reminder.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/svc_reminder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/svc_reminder.cpp b/plugins/UserInfoEx/src/svc_reminder.cpp index 94e317b8e6..83f3c91491 100644 --- a/plugins/UserInfoEx/src/svc_reminder.cpp +++ b/plugins/UserInfoEx/src/svc_reminder.cpp @@ -312,7 +312,7 @@ static void NotifyFlashCListIcon(MCONTACT hContact, const CEvent &evt) CLISTEVENT cle = {};
cle.hContact = hContact;
- cle.flags = CLEF_URGENT|CLEF_TCHAR;
+ cle.flags = CLEF_URGENT|CLEF_UNICODE;
cle.hDbEvent = NULL;
switch (evt._eType) {
@@ -329,7 +329,7 @@ static void NotifyFlashCListIcon(MCONTACT hContact, const CEvent &evt) default:
return;
}
- cle.ptszTooltip = szMsg;
+ cle.szTooltip.w = szMsg;
// pszService = NULL get error (crash),
// pszService = "dummy" get 'service not fount' and continue;
|