diff options
Diffstat (limited to 'protocols/ICQ-WIM/src/main.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/main.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/protocols/ICQ-WIM/src/main.cpp b/protocols/ICQ-WIM/src/main.cpp index 9c66166a60..0cf2cd2674 100644 --- a/protocols/ICQ-WIM/src/main.cpp +++ b/protocols/ICQ-WIM/src/main.cpp @@ -22,8 +22,6 @@ bool g_bSecureIM, g_bMessageState; -HWND g_hwndHeartbeat; - IconItem iconList[] = { { LPGEN("E-mail"), "icq_email", IDI_INBOX }, @@ -95,8 +93,6 @@ int CMPlugin::Load() // register the second instance of this plugin as MRA g_pluginMra.Register(); - g_hwndHeartbeat = CreateWindowEx(0, L"STATIC", nullptr, 0, 0, 0, 0, 0, nullptr, nullptr, nullptr, nullptr); - registerIcon("Protocols/ICQ", iconList, "ICQ"); HookEvent(ME_SYSTEM_MODULELOAD, ModuleLoad); @@ -104,9 +100,3 @@ int CMPlugin::Load() HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoaded); return 0; } - -int CMPlugin::Unload() -{ - DestroyWindow(g_hwndHeartbeat); - return 0; -} |