summaryrefslogtreecommitdiff
path: root/protocols/ICQ-WIM/src/poll.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-02-26 21:45:12 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-02-26 21:45:12 +0300
commita7a6b845a45997685f3953d5b161a24c78fbcff2 (patch)
tree4c79ae435bc0f90e964e72715a0ea266a0616fa0 /protocols/ICQ-WIM/src/poll.cpp
parentd90f32876f6b04e983c45bf41c3716c0a25134b9 (diff)
fixes #1841 (each incoming email in MRA generates its own event in clist)
Diffstat (limited to 'protocols/ICQ-WIM/src/poll.cpp')
-rw-r--r--protocols/ICQ-WIM/src/poll.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQ-WIM/src/poll.cpp b/protocols/ICQ-WIM/src/poll.cpp
index 563ba2b9aa..09782ee30b 100644
--- a/protocols/ICQ-WIM/src/poll.cpp
+++ b/protocols/ICQ-WIM/src/poll.cpp
@@ -222,9 +222,9 @@ void CIcqProto::ProcessNotification(const JSONNode &ev)
mir_snprintf(szServiceFunction, "%s%s", m_szModuleName, PS_GOTO_INBOX);
CLISTEVENT cle = {};
- cle.lpszProtocol = m_szModuleName;
+ cle.hDbEvent = 1;
cle.hIcon = Popup.lchIcon;
- cle.flags = (CLEF_UNICODE | CLEF_PROTOCOLGLOBAL);
+ cle.flags = CLEF_UNICODE;
cle.pszService = szServiceFunction;
cle.szTooltip.w = Popup.lptzText;
g_clistApi.pfnAddEvent(&cle);