summaryrefslogtreecommitdiff
path: root/src/core/modules.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-01-17 14:41:49 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-01-17 14:41:49 +0000
commitb638838fd6ec1eb32d096e0244e8e0d2a8196c73 (patch)
tree77673fe0a3e1f5513e11e323a894cee82488091e /src/core/modules.cpp
parent6d2b23beea4515281f3b0760c0246d4aea9b1e80 (diff)
- kernel chat module loads automatically, not on request;
- the special structure, CHAT_MANAGER_INITDATA, is used to customize chats; - fix for fonts group for all plugins; - fix for options in tabSRMM git-svn-id: http://svn.miranda-ng.org/main/trunk@7688 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/modules.cpp')
-rw-r--r--src/core/modules.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/modules.cpp b/src/core/modules.cpp
index a6b6d2d9e3..5a991a6d39 100644
--- a/src/core/modules.cpp
+++ b/src/core/modules.cpp
@@ -137,8 +137,7 @@ int LoadDefaultModules(void)
if (LoadSkinHotkeys()) return 1;
if (LoadFontserviceModule()) return 1;
if (LoadSrmmModule()) return 1;
- InitChatModule();
-
+ if (LoadChatModule()) return 1;
if (LoadDescButtonModule()) return 1;
if (LoadOptionsModule()) return 1;
if (LoadNetlibModule()) return 1;
@@ -148,7 +147,6 @@ int LoadDefaultModules(void)
LoadDbAccounts(); // retrieves the account array from a database
if (LoadContactsModule()) return 1;
if (LoadContactListModule()) return 1; // prepare contact list interface
- // LoadChatModule();
if (LoadAddContactModule()) return 1;
if (LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first