diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-22 20:06:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-22 20:06:54 +0000 |
commit | b02e4589fbe33a2f623f044c2056a831f47bbe37 (patch) | |
tree | 3307971f0da39f44dca3c7c4099a9a2e5a241e49 /plugins/UserInfoEx/src/init.cpp | |
parent | 4c940062ccbf560f057b22a9a5dabe72f17a1222 (diff) |
- options setting fix;
- even that cycle is useless;
git-svn-id: http://svn.miranda-ng.org/main/trunk@7344 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/init.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/init.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/UserInfoEx/src/init.cpp b/plugins/UserInfoEx/src/init.cpp index 394e2da982..b2bb2f2708 100644 --- a/plugins/UserInfoEx/src/init.cpp +++ b/plugins/UserInfoEx/src/init.cpp @@ -85,9 +85,6 @@ static int OnModulesLoaded(WPARAM wParam, LPARAM lParam) SvcHomepageLoadModule();
SvcFlagsOnModulesLoaded();
- if (SvcEMailEnableExtraIcons() || SvcPhoneEnableExtraIcons() || SvcGenderEnableExtraIcons() || SvcHomepageEnableExtraIcons())
- pcli->pfnSetAllExtraIcons(0);
-
// build contact's menuitems
RebuildMenu();
HookEvent( ME_CLIST_PREBUILDSTATUSMENU, (MIRANDAHOOK)RebuildAccount);
@@ -204,6 +201,10 @@ extern "C" int __declspec(dllexport) Load(void) SvcEMailLoadModule();
SvcRefreshContactInfoLoadModule();
+ SvcPhoneEnableExtraIcons();
+ SvcGenderEnableExtraIcons();
+ SvcHomepageEnableExtraIcons();
+
CtrlContactLoadModule();
// load my button class
CtrlButtonLoadModule();
|