diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-09-11 01:33:53 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-09-11 01:33:53 +0300 |
commit | df91299c0082a489e3a45f06b1cb52f2162b883d (patch) | |
tree | 45ca826f58126f43c7563b4a4e5880d2b67818c7 /icons.cpp | |
parent | 5631c9efc283f72fdaf4eb3ed6212b0d3dee8d7f (diff) |
ported changes from miranda_ng branch
Diffstat (limited to 'icons.cpp')
-rwxr-xr-x | icons.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -139,10 +139,9 @@ void setSrmmIcon(HANDLE h) void RefreshContactListIcons()
{
- HANDLE hContact;
extern HANDLE g_hCLIcon;
CallService(MS_CLUI_LISTBEGINREBUILD,0,0);
- hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
+ HANDLE hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
while (hContact)
{
setClistIcon(hContact);
|