diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-07 17:46:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-07 17:46:01 +0000 |
commit | 26aed6878b3c891b618eb83469de75a623e80361 (patch) | |
tree | 108f91e1dd896301e24c3a0ee0b2c90f81f78635 /src/core/modules.cpp | |
parent | e02832e86a0dd5a95fb4c0db43b17c9eee87724d (diff) |
- forgotten /Core module: stdaway
git-svn-id: http://svn.miranda-ng.org/main/trunk@816 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/modules.cpp')
-rw-r--r-- | src/core/modules.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/modules.cpp b/src/core/modules.cpp index 462d6b27c3..423bd3471a 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -49,7 +49,6 @@ int LoadSkinIcons(void); int LoadSkinSounds(void);
int LoadSkinHotkeys(void);
int LoadUserInfoModule(void); // ui: user info
-int LoadAwayMsgModule(void); // ui: setting away messages
int LoadVisibilityModule(void); // ui: visibility control
int LoadCLUIModule(void); // ui: CList UI
int LoadPluginOptionsModule(void); // ui: plugin viewer
@@ -57,7 +56,6 @@ int LoadAddContactModule(void); // ui: authcontrol contacts int LoadUtilsModule(void); // ui: utils (has a few window classes, like HyperLink)
int LoadCLCModule(void); // window class: CLC control
int LoadButtonModule(void); // window class: button class
-int LoadContactsModule(void); // random: contact
int LoadFontserviceModule(void); // ui: font manager
int LoadIcoLibModule(void); // ui: icons manager
int LoadServiceModePlugin(void);
@@ -118,7 +116,6 @@ int LoadDefaultModules(void) NetlibInitSsl();
if ( LoadProtocolsModule()) return 1;
LoadDbAccounts(); // retrieves the account array from a database
- if ( LoadContactsModule()) return 1;
if ( LoadContactListModule()) return 1;
if ( LoadAddContactModule()) return 1;
if ( LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first
@@ -129,11 +126,10 @@ int LoadDefaultModules(void) //order becomes less important below here
if ( LoadFindAddModule()) return 1;
- if ( LoadAwayMsgModule()) return 1;
if ( LoadIgnoreModule()) return 1;
if ( LoadVisibilityModule()) return 1;
- for (int i=1; i < 10; i++) {
+ for (int i=0; i < 11; i++) {
if ( pluginDefault[i].pImpl )
continue;
|