diff options
author | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-12-31 16:11:05 +0000 |
---|---|---|
committer | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-12-31 16:11:05 +0000 |
commit | f39683393b0f9c31559ef05c824774541d9a19be (patch) | |
tree | 715aca7e40f104ea9839d2ec1bcbf8dfb7d017e3 /SecureIM/crypt_popups.cpp | |
parent | 85863331bd2920991e8e7093a472e60d749b4a7a (diff) |
patch by FREAK_THEMIGHTY:
add x64 support
added context-sensitive langpacks support
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@252 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
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);
}
}
|