diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-05 19:31:05 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-05 19:31:05 +0300 |
commit | ff3beb8902dc91ad183ec10d19d0ad12d2a6de93 (patch) | |
tree | 935ce9764dfd27063d81ad3214ea3f02a2a91a38 /plugins/Clist_nicer | |
parent | 08273044539a8ee775156187a6e7e6db8614e1db (diff) |
CLIST_INTERFACE::pfnDrawMenuItem => Clist_DrawMenuItem
Diffstat (limited to 'plugins/Clist_nicer')
-rw-r--r-- | plugins/Clist_nicer/src/clistevents.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_nicer/src/clistevents.cpp b/plugins/Clist_nicer/src/clistevents.cpp index bc970f3aa0..1e8ab1e3df 100644 --- a/plugins/Clist_nicer/src/clistevents.cpp +++ b/plugins/Clist_nicer/src/clistevents.cpp @@ -120,7 +120,7 @@ LRESULT CALLBACK EventAreaWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPa if (nmi) {
iIcon = Clist_GetContactIcon(nmi->hContact);
hIcon = ImageList_GetIcon(hCListImages, iIcon, ILD_NORMAL);
- pcli->pfnDrawMenuItem(dis, hIcon, nmi->hIcon);
+ Clist_DrawMenuItem(dis, hIcon, nmi->hIcon);
return TRUE;
}
}
|