diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-04 22:13:32 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-04 22:13:32 +0300 |
commit | 8e6a28579846d35bc36966dfb50e2eb7f662471a (patch) | |
tree | 1c0f19350badaf3dafdb9fddb837d898bcdfb9d9 /plugins/Clist_modern/src | |
parent | ad2a5992f1fa9558ad653f8d5c81896472ce8363 (diff) |
CLIST_INTERFACE::pfnReloadExtraIcons => ExtraIcon_Reload()
CLIST_INTERFACE::pfnSetAllExtraIcons => ExtraIcon_SetAll()
Diffstat (limited to 'plugins/Clist_modern/src')
-rw-r--r-- | plugins/Clist_modern/src/modern_clui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 04c4ecf386..8ae724f4fb 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -419,7 +419,7 @@ HRESULT CLUI::CreateCLC() CallService(MS_SKINENG_REGISTERPAINTSUB, (WPARAM)Frame.hWnd, (LPARAM)CLCPaint::PaintCallbackProc);
CallService(MS_CLIST_FRAMES_SETFRAMEOPTIONS, MAKEWPARAM(FO_TBTIPNAME, hFrameContactTree), (LPARAM)Translate("My Contacts"));
- pcli->pfnReloadExtraIcons();
+ ExtraIcon_Reload();
nLastRequiredHeight = 0;
if (g_CluiData.current_viewmode[0] == '\0') {
@@ -1209,8 +1209,8 @@ int CLUI_IconsChanged(WPARAM, LPARAM) return 0;
DrawMenuBar(pcli->hwndContactList);
- pcli->pfnReloadExtraIcons();
- pcli->pfnSetAllExtraIcons(0);
+ ExtraIcon_Reload();
+ ExtraIcon_SetAll();
// need to update tray cause it use combined icons
pcli->pfnTrayIconIconsChanged(); // TODO: remove as soon as core will include icolib
ske_RedrawCompleteWindow();
|