summaryrefslogtreecommitdiff
path: root/protocols/IRCG/src/ircproto.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-10-17 17:28:58 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-10-17 17:28:58 +0300
commit2a24763dc13f729f41f6909d9e74e9bc7d6243a8 (patch)
tree892207d8d0b2fb622524fb1d5321b7efb6651ab1 /protocols/IRCG/src/ircproto.cpp
parentb80bf9c6208115addd64726fc6904f1543c63952 (diff)
IRC:
- useless variable m_evWndCreate removed; - fixes #1628 (IRC channel list window crashes when closed prematurely); - code cleaning; - version bump
Diffstat (limited to 'protocols/IRCG/src/ircproto.cpp')
-rw-r--r--protocols/IRCG/src/ircproto.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp
index 9c45c532ee..3fa02e20b1 100644
--- a/protocols/IRCG/src/ircproto.cpp
+++ b/protocols/IRCG/src/ircproto.cpp
@@ -39,8 +39,6 @@ CIrcProto::CIrcProto(const char* szModuleName, const wchar_t* tszUserName) :
vUserhostReasons(10),
vWhoInProgress(10)
{
- m_evWndCreate = ::CreateEvent(nullptr, FALSE, FALSE, nullptr);
-
CreateProtoService(PS_GETMYAWAYMSG, &CIrcProto::GetMyAwayMsg);
CreateProtoService(PS_CREATEACCMGRUI, &CIrcProto::SvcCreateAccMgrUI);
@@ -157,7 +155,6 @@ CIrcProto::~CIrcProto()
mir_free(m_alias);
- CloseHandle(m_evWndCreate);
KillChatTimer(OnlineNotifTimer);
KillChatTimer(OnlineNotifTimer3);
}