diff options
Diffstat (limited to 'clist.cpp')
-rw-r--r-- | clist.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -29,11 +29,13 @@ int onExtraImageListRebuilding(WPARAM, LPARAM) int onExtraImageApplying(WPARAM wParam, LPARAM)
{
+ void setClistIcon(HANDLE);
if(g_hCLIcon && ServiceExists(MS_CLIST_EXTRA_SET_ICON))
{
- IconExtraColumn iec = {0}; //need to init this
+// IconExtraColumn iec = {0}; //need to init this
if( g_hCLIcon )
- ExtraIcon_SetIcon(g_hCLIcon, (HANDLE)wParam, iec.hImage);
+ setClistIcon((HANDLE)wParam);
+// ExtraIcon_SetIcon(g_hCLIcon, (HANDLE)wParam, iec.hImage);
}
return 0;
}
|