diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-09-07 19:13:16 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-09-07 19:13:16 +0300 |
commit | 413f5a1f2d643b4f76a8f01be314119f31ca0ca7 (patch) | |
tree | 78cecf7cefe6f51b66c93c7abc428c2770dad837 /src/icons.cpp | |
parent | 418526a0e2c4a00afae9f9d2678be7c837c247d0 (diff) |
merged changes from miranda_ng repo
Diffstat (limited to 'src/icons.cpp')
-rwxr-xr-x | src/icons.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/icons.cpp b/src/icons.cpp index c981eea..a1d02df 100755 --- a/src/icons.cpp +++ b/src/icons.cpp @@ -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);
|