diff options
Diffstat (limited to 'plugins/Exchange/src/utils.cpp')
-rw-r--r-- | plugins/Exchange/src/utils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Exchange/src/utils.cpp b/plugins/Exchange/src/utils.cpp index 8874775373..b5459483ef 100644 --- a/plugins/Exchange/src/utils.cpp +++ b/plugins/Exchange/src/utils.cpp @@ -220,9 +220,9 @@ int ThreadCheckEmail(int bForceAttempt) void _popupUtil(wchar_t* szMsg)
{
- POPUPDATAT ppd = { 0 };
+ POPUPDATAW ppd = { 0 };
ppd.lchIcon = hiMailIcon;
- wcsncpy(ppd.lptzContactName, L"Exchange notifier", MAX_CONTACTNAME - 1);
- wcsncpy(ppd.lptzText, szMsg, MAX_SECONDLINE - 1);
- PUAddPopupT(&ppd); //show a popup to tell the user what we're doing.
+ wcsncpy(ppd.lpwzContactName, L"Exchange notifier", MAX_CONTACTNAME - 1);
+ wcsncpy(ppd.lpwzText, szMsg, MAX_SECONDLINE - 1);
+ PUAddPopupW(&ppd); //show a popup to tell the user what we're doing.
}
|