summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-13 15:25:34 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-13 15:25:34 +0000
commite9104f1872c1a4b09f5f3259921745d2aff5cee6 (patch)
treeeabcfb3be3cc02290a26fcf2eacc36d7feb21bd5
parenta79fa86ed589c3d843baa932230ef08bc7468296 (diff)
fix for Clist Nicer not to create its services on OnModulesLoaded
git-svn-id: http://svn.miranda-ng.org/main/trunk@948 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/Clist_nicer/SRC/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_nicer/SRC/init.cpp b/plugins/Clist_nicer/SRC/init.cpp
index 3b2f372f95..68f7127809 100644
--- a/plugins/Clist_nicer/SRC/init.cpp
+++ b/plugins/Clist_nicer/SRC/init.cpp
@@ -339,7 +339,6 @@ LBL_Error:
pcli->pfnGetWindowVisibleState = GetWindowVisibleState;
pcli->pfnHitTest = HitTest;
pcli->pfnLoadContactTree = LoadContactTree;
- pcli->pfnOnCreateClc = LoadCLUIModule;
pcli->pfnPaintClc = PaintClc;
pcli->pfnRebuildEntireList = RebuildEntireList;
pcli->pfnRowHitTest = RowHeight::hitTest;
@@ -367,6 +366,7 @@ LBL_Error:
rc = LoadContactListModule();
if (rc == 0)
rc = LoadCLCModule();
+ LoadCLUIModule();
LoadButtonModule();
HookEvent(ME_SYSTEM_MODULESLOADED, systemModulesLoaded);
return rc;