summaryrefslogtreecommitdiff
path: root/protocols/Gadu-Gadu
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-01-19 12:02:16 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-01-19 12:02:16 +0000
commit085b45f2920353f055b036c00ebb27fb1b8148e9 (patch)
tree9b172d62bdbc8ac065368dd99d843899d9f10580 /protocols/Gadu-Gadu
parentbd79fceb18897a5cf49ac5175882dcbf03673847 (diff)
boolean field names normalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@7753 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu')
-rw-r--r--protocols/Gadu-Gadu/src/image.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/protocols/Gadu-Gadu/src/image.cpp b/protocols/Gadu-Gadu/src/image.cpp
index abcd765e88..15006095aa 100644
--- a/protocols/Gadu-Gadu/src/image.cpp
+++ b/protocols/Gadu-Gadu/src/image.cpp
@@ -929,15 +929,10 @@ int GGPROTO::img_display(HANDLE hContact, void *img)
gg_LeaveCriticalSection(&img_mutex, "img_display", 60, 1, "img_mutex", 1);
SendMessage(dat->hWnd, WM_ADDIMAGE, 0, (LPARAM)img);
- if (/*db_get_b(NULL, "Chat", "FlashWindowHighlight", 0) != 0 && */
+ if (/*db_get_b(NULL, "Chat", "bFlashWindowHighlight", 0) != 0 && */
GetActiveWindow() != dat->hWnd && GetForegroundWindow() != dat->hWnd)
SetTimer(dat->hWnd, TIMERID_FLASHWND, 900, NULL);
- /* DEPRECATED: No more grabbing the focus... just flashing
- SetForegroundWindow(dat->hWnd);
- SetFocus(dat->hWnd);
- */
-
return TRUE;
}