diff options
Diffstat (limited to 'SecureIM/crypt_popups.cpp')
-rw-r--r-- | SecureIM/crypt_popups.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SecureIM/crypt_popups.cpp b/SecureIM/crypt_popups.cpp index 0a33652..768423e 100644 --- a/SecureIM/crypt_popups.cpp +++ b/SecureIM/crypt_popups.cpp @@ -90,7 +90,7 @@ void showPopUp(LPCSTR lpzText,HANDLE hContact,HICON hIcon, UINT type) { // ppd.PluginData = NULL;
//Now that every field has been filled, we want to see the popup.
- CallService(MS_POPUP_ADDPOPUPW, (WPARAM)&ppd, 0);
+ PUAddPopUpW(&ppd);
}
else {
POPUPDATAEX ppd = {0};
@@ -109,7 +109,7 @@ void showPopUp(LPCSTR lpzText,HANDLE hContact,HICON hIcon, UINT type) { // ppd.PluginData = NULL;
//Now that every field has been filled, we want to see the popup.
- CallService(MS_POPUP_ADDPOPUPEX, (WPARAM)&ppd, 0);
+ PUAddPopUpEx(&ppd);
}
}
|