summaryrefslogtreecommitdiff
path: root/plugins/CSList
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-04-04 21:49:37 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-04-04 21:49:37 +0300
commitad2a5992f1fa9558ad653f8d5c81896472ce8363 (patch)
tree9c43ee9b96c20395f38a897382a7321325fb1d13 /plugins/CSList
parentb064f2ebde6d4a58141e5b2e8186c6ea53680f64 (diff)
- CLIST_INTERFACE::pfnGetProtocolMenu => Menu_GetProtocolMenu
- CLIST_INTERFACE::pfnReloadProtoMenus => Menu_ReloadProtoMenus - CLIST_INTERFACE::pfnGetProtoIndexByPos considered unused... thus removed
Diffstat (limited to 'plugins/CSList')
-rw-r--r--plugins/CSList/src/cslist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp
index cf4a830c2a..092bc18f5e 100644
--- a/plugins/CSList/src/cslist.cpp
+++ b/plugins/CSList/src/cslist.cpp
@@ -72,7 +72,7 @@ static int OnDbChanged(WPARAM hContact, LPARAM lparam)
if (hContact == NULL) {
const char *szUniqueID = Proto_GetUniqueId(cws->szModule);
if (!mir_strcmp(cws->szSetting, szUniqueID))
- pcli->pfnReloadProtoMenus();
+ Menu_ReloadProtoMenus();
}
return 0;
}
@@ -1020,7 +1020,7 @@ INT_PTR CALLBACK CSOptionsProc(HWND hwnd, UINT message, WPARAM, LPARAM lparam)
setByte("DeleteAfterImport", IsDlgButtonChecked(hwnd, IDC_DELETE_AFTER_IMPORT) ? 1 : 0);
setByte("RememberWindowPosition", IsDlgButtonChecked(hwnd, IDC_REMEMBER_POSITION) ? 1 : 0);
- pcli->pfnReloadProtoMenus();
+ Menu_ReloadProtoMenus();
break;
}
return TRUE;