diff options
Diffstat (limited to 'plugins/Clist_modern')
-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 0064089438..8e2f0e0645 100644 --- a/plugins/Clist_modern/src/modern_popup.cpp +++ b/plugins/Clist_modern/src/modern_popup.cpp @@ -71,7 +71,7 @@ void ShowPopup(const char *title, const char *description, int type) }
ppd.PluginWindowProc = DumbPopupDlgProc;
- PUAddPopUp(&ppd);
+ PUAddPopup(&ppd);
}
// Handle to popup events
@@ -79,11 +79,11 @@ static LRESULT CALLBACK DumbPopupDlgProc(HWND hWnd, UINT message, WPARAM wParam, {
switch(message) {
case WM_COMMAND:
- PUDeletePopUp(hWnd);
+ PUDeletePopup(hWnd);
return TRUE;
case WM_CONTEXTMENU:
- PUDeletePopUp(hWnd);
+ PUDeletePopup(hWnd);
return TRUE;
case UM_FREEPLUGINDATA:
|