diff options
author | George Hazan <ghazan@miranda.im> | 2017-09-19 14:12:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-09-19 14:13:06 +0300 |
commit | e254312f9a660c83081ce2062ab14ba3c3614089 (patch) | |
tree | 324dff386c4b394ed4dc0f9b912ce3332bd94e84 /src/core | |
parent | 54ad7c456325b4c7fd639ef2d7cca7d5aef81c05 (diff) |
useless structure GCDEST finally removed
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/chat_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stdmsg/src/chat_manager.cpp b/src/core/stdmsg/src/chat_manager.cpp index 3afa17bccc..913c3d0987 100644 --- a/src/core/stdmsg/src/chat_manager.cpp +++ b/src/core/stdmsg/src/chat_manager.cpp @@ -121,14 +121,14 @@ static void OnFlashWindow(SESSION_INFO *si, int bInactive) static BOOL DoTrayIcon(SESSION_INFO *si, GCEVENT *gce) { - if (gce->pDest->iType & g_Settings.dwTrayIconFlags) + if (gce->iType & g_Settings.dwTrayIconFlags) return oldDoTrayIcon(si, gce); return TRUE; } static BOOL DoPopup(SESSION_INFO *si, GCEVENT *gce) { - if (gce->pDest->iType & g_Settings.dwPopupFlags) + if (gce->iType & g_Settings.dwPopupFlags) return oldDoPopup(si, gce); return TRUE; } |