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_nicer | |
parent | ad2a5992f1fa9558ad653f8d5c81896472ce8363 (diff) |
CLIST_INTERFACE::pfnReloadExtraIcons => ExtraIcon_Reload()
CLIST_INTERFACE::pfnSetAllExtraIcons => ExtraIcon_SetAll()
Diffstat (limited to 'plugins/Clist_nicer')
-rw-r--r-- | plugins/Clist_nicer/src/clcitems.cpp | 2 | ||||
-rw-r--r-- | plugins/Clist_nicer/src/clui.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Clist_nicer/src/clcitems.cpp b/plugins/Clist_nicer/src/clcitems.cpp index 45eb501421..5a8ff6e979 100644 --- a/plugins/Clist_nicer/src/clcitems.cpp +++ b/plugins/Clist_nicer/src/clcitems.cpp @@ -128,7 +128,7 @@ ClcContact* AddContactToGroup(struct ClcData *dat, ClcGroup *group, MCONTACT hCo LoadAvatarForContact(p);
// notify other plugins to re-supply their extra images (icq for xstatus, mBirthday etc...)
- pcli->pfnSetAllExtraIcons(hContact);
+ ExtraIcon_SetAll(hContact);
}
RTL_DetectAndSet(p, p->hContact);
diff --git a/plugins/Clist_nicer/src/clui.cpp b/plugins/Clist_nicer/src/clui.cpp index 340b5e8863..1eed90914d 100644 --- a/plugins/Clist_nicer/src/clui.cpp +++ b/plugins/Clist_nicer/src/clui.cpp @@ -175,7 +175,7 @@ static HWND PreCreateCLC(HWND parent) // create internal frames, including the last frame (actual CLC control) static int CreateCLC() { - pcli->pfnReloadExtraIcons(); + ExtraIcon_Reload(); pcli->pfnSetHideOffline(oldhideoffline); disableautoupd = 0; { @@ -333,8 +333,8 @@ void ConfigureFrame() void IcoLibReloadIcons() { CacheClientIcons(); - pcli->pfnReloadExtraIcons(); - pcli->pfnSetAllExtraIcons(NULL); + ExtraIcon_Reload(); + ExtraIcon_SetAll(); Clist_Broadcast(CLM_AUTOREBUILD, 0, 0); SendMessage(g_hwndViewModeFrame, WM_USER + 100, 0, 0); |