From 9f478bb53be99c6ad5cf69c1a61cc14900cf72b8 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 13 Aug 2014 18:05:18 +0000 Subject: icons registration moved to Load() git-svn-id: http://svn.miranda-ng.org/main/trunk@10180 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Rate/src/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins/Rate/src') diff --git a/plugins/Rate/src/main.cpp b/plugins/Rate/src/main.cpp index 4abd350ee4..806981626d 100644 --- a/plugins/Rate/src/main.cpp +++ b/plugins/Rate/src/main.cpp @@ -99,9 +99,6 @@ static IconItem iconList[] = int onModulesLoaded(WPARAM wParam,LPARAM lParam) { - // IcoLib support - Icon_Register(g_hInst, LPGEN("Contact rate"), iconList, SIZEOF(iconList)); - // Set initial value for all contacts for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) setExtraIcon(hContact, -1, FALSE); @@ -123,11 +120,14 @@ extern "C" int __declspec(dllexport) Load(void) { mir_getLP(&pluginInfo); - HookEvent(ME_SYSTEM_MODULESLOADED, onModulesLoaded); - HookEvent(ME_DB_CONTACT_SETTINGCHANGED, onContactSettingChanged); + HookEvent(ME_SYSTEM_MODULESLOADED, onModulesLoaded); + HookEvent(ME_DB_CONTACT_SETTINGCHANGED, onContactSettingChanged); + + // IcoLib support + Icon_Register(g_hInst, LPGEN("Contact rate"), iconList, SIZEOF(iconList)); - // Extra icon support - hExtraIcon = ExtraIcon_Register("contact_rate", LPGEN("Contact rate"), "rate_high"); + // Extra icon support + hExtraIcon = ExtraIcon_Register("contact_rate", LPGEN("Contact rate"), "rate_high"); return 0; } -- cgit v1.2.3