diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-18 19:16:31 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-18 19:16:31 +0000 |
commit | 75d37f369f58f47d8d47699f8e7fac7dcf28dbd5 (patch) | |
tree | 2e75244eb0348438ee1a557a8e2cdcca9d7f7072 /protocols/IcqOscarJ/src/icq_proto.cpp | |
parent | 93f4a8b8357a386d507f45d121aa364fd17a22f3 (diff) |
global icq xstatus icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@2362 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_proto.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_proto.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/protocols/IcqOscarJ/src/icq_proto.cpp b/protocols/IcqOscarJ/src/icq_proto.cpp index cf91ecb38d..7f1276c628 100644 --- a/protocols/IcqOscarJ/src/icq_proto.cpp +++ b/protocols/IcqOscarJ/src/icq_proto.cpp @@ -104,8 +104,6 @@ cheekySearchId( -1 ) localSeqMutex = new icq_critical_section();
m_modeMsgsEvent = CreateProtoEvent(ME_ICQ_STATUSMSGREQ);
- hxstatuschanged = CreateProtoEvent(ME_ICQ_CUSTOMSTATUS_CHANGED);
- hxstatusiconchanged = CreateProtoEvent(ME_ICQ_CUSTOMSTATUS_EXTRAICON_CHANGED);
// Initialize cookies
cookieMutex = new icq_critical_section();
@@ -168,9 +166,6 @@ cheekySearchId( -1 ) // Custom caps
CreateProtoService(PS_ICQ_ADDCAPABILITY, &CIcqProto::IcqAddCapability);
CreateProtoService(PS_ICQ_CHECKCAPABILITY, &CIcqProto::IcqCheckCapability);
-
- HookProtoEvent(ME_SKIN2_ICONSCHANGED, &CIcqProto::OnReloadIcons);
-
{
// Initialize IconLib icons
char szSectionName[MAX_PATH], *szAccountName = tchar_to_utf8(m_tszUserName);
@@ -193,9 +188,6 @@ cheekySearchId( -1 ) // Startup Auto Info-Update thread
icq_InitInfoUpdate();
- // Init extra statuses
- InitXStatusIcons();
-
HookProtoEvent(ME_CLIST_PREBUILDSTATUSMENU, &CIcqProto::OnPreBuildStatusMenu);
// Register netlib users
@@ -263,12 +255,6 @@ CIcqProto::~CIcqProto() if (m_modeMsgsEvent)
DestroyHookableEvent(m_modeMsgsEvent);
- if (hxstatuschanged)
- DestroyHookableEvent(hxstatuschanged);
-
- if (hxstatusiconchanged)
- DestroyHookableEvent(hxstatusiconchanged);
-
// Clean-up remaining protocol instance members
cookies.destroy();
@@ -297,8 +283,6 @@ CIcqProto::~CIcqProto() SAFE_FREE(&m_modeMsgs.szFfc);
// Remove account icons
- UninitXStatusIcons();
-
IconLibRemove(&m_hIconProtocol);
NetLog_Server("%s: Protocol instance '%s' destroyed.", ICQ_PROTOCOL_NAME, m_szModuleName);
|