diff options
Diffstat (limited to 'protocols/IcqOscarJ/icq_popups.cpp')
-rw-r--r-- | protocols/IcqOscarJ/icq_popups.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/IcqOscarJ/icq_popups.cpp b/protocols/IcqOscarJ/icq_popups.cpp index 3bc1382ef2..c593dd6367 100644 --- a/protocols/IcqOscarJ/icq_popups.cpp +++ b/protocols/IcqOscarJ/icq_popups.cpp @@ -235,7 +235,6 @@ int CIcqProto::ShowPopUpMsg(HANDLE hContact, const char *szTitle, const char *sz strcat(szSetting, "Timeout");
ppd.iSeconds = getSettingDword(NULL, szSetting, ppd.iSeconds);
-#if defined( _UNICODE )
// call unicode popup module - only on unicode OS otherwise it will not work properly :(
// due to Popup Plug bug in ADDPOPUPW implementation
if ( ServiceExists( MS_POPUP_ADDPOPUPW ))
@@ -254,7 +253,7 @@ int CIcqProto::ShowPopUpMsg(HANDLE hContact, const char *szTitle, const char *sz return CallService(MS_POPUP_ADDPOPUPW, (WPARAM)&ppdw, 0);
}
else
-#endif
+
{
char str[MAX_PATH];
|