summaryrefslogtreecommitdiff
path: root/plugins/ExtraIcons/src/extraicons.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-08-15 20:29:07 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-08-15 20:29:07 +0000
commit50091223b8c0ed404968441c728e400e43ac6b8a (patch)
treef89833bd530fd63655e7d0575435212d2152ff7b /plugins/ExtraIcons/src/extraicons.cpp
parentf5a524f750e1dc0c16d82df546557d9d7fe703f8 (diff)
- patch from pescuma for NULL handles
git-svn-id: http://svn.miranda-ng.org/main/trunk@1470 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExtraIcons/src/extraicons.cpp')
-rw-r--r--plugins/ExtraIcons/src/extraicons.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExtraIcons/src/extraicons.cpp b/plugins/ExtraIcons/src/extraicons.cpp
index e468137300..c1affd39ac 100644
--- a/plugins/ExtraIcons/src/extraicons.cpp
+++ b/plugins/ExtraIcons/src/extraicons.cpp
@@ -157,7 +157,7 @@ int Clist_SetExtraIcon(HANDLE hContact, int slot, HANDLE hImage)
IconExtraColumn iec = { 0 };
iec.cbSize = sizeof(iec);
iec.ColumnType = ConvertToClistSlot(slot);
- iec.hImage = (hImage == NULL ? (HANDLE) -1 : hImage);
+ iec.hImage = hImage;
return CallService(MS_CLIST_EXTRA_SET_ICON, (WPARAM) hContact, (LPARAM) &iec);
}