diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-04-21 19:35:31 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-04-21 19:35:31 +0000 |
commit | 591f92a4f13c52992a33d9cb14f83df9d0dde407 (patch) | |
tree | 98daff312a57ddfed90280756937b53af0141faf /src/mir_app | |
parent | e9a58c60e74de8195312ce6ecb48c170d76276d2 (diff) |
core: temporary fix for offline contacts extra icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@16740 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/clui.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mir_app/src/clui.cpp b/src/mir_app/src/clui.cpp index e45196aafd..23890363a2 100644 --- a/src/mir_app/src/clui.cpp +++ b/src/mir_app/src/clui.cpp @@ -33,7 +33,6 @@ extern HANDLE hEventExtraClick; static HMODULE hUserDll;
static HANDLE hContactDraggingEvent, hContactDroppedEvent, hContactDragStopEvent;
-static bool bSetOfflineIcons = false;
static int transparentFocus = 1;
UINT uMsgProcessProfile;
@@ -797,10 +796,7 @@ LRESULT CALLBACK fnContactListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM return TRUE;
case CLN_LISTREBUILT:
- if (!bSetOfflineIcons) {
- bSetOfflineIcons = true;
- cli.pfnSetAllExtraIcons(NULL);
- }
+ cli.pfnSetAllExtraIcons(NULL);
return FALSE;
case NM_KEYDOWN:
|