diff options
Diffstat (limited to 'plugins/Clist_modern/src/modern_popup.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_popup.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_popup.cpp b/plugins/Clist_modern/src/modern_popup.cpp index 63b4c0418d..93b6a8d084 100644 --- a/plugins/Clist_modern/src/modern_popup.cpp +++ b/plugins/Clist_modern/src/modern_popup.cpp @@ -50,11 +50,11 @@ void ShowTracePopup(const char *text) // Show an popup
void ShowPopup(const char *title, const char *description, int type)
{
- if ( !ServiceExists(MS_POPUP_ADDPOPUPEX) || !EnablePopups)
+ if ( !ServiceExists(MS_POPUP_ADDPOPUP) || !EnablePopups)
return;
// Make popup
- POPUPDATAEX ppd = { 0 };
+ POPUPDATA ppd = { 0 };
ppd.lchContact = 0;
ppd.lchIcon = LoadSkinnedIcon(SKINICON_OTHER_MIRANDA);
@@ -83,7 +83,7 @@ void ShowPopup(const char *title, const char *description, int type) ppd.iSeconds = 0;
// Now that every field has been filled, we want to see the popup.
- CallService(MS_POPUP_ADDPOPUPEX, (WPARAM)&ppd, 0);
+ PUAddPopUp(&ppd);
}
// Handle to popup events
|