diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-30 19:58:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-30 19:58:56 +0000 |
commit | ea771d270d4985b64750a5f7c9ea7b479252b5f0 (patch) | |
tree | e270188eea08a2dcc6e2af9b67b3f23ee28202d1 /src/core/modules.cpp | |
parent | b90c2c83c1b3b8e4553275cdcf1ad37f11637ad3 (diff) |
contacts.cpp returned back to the core
git-svn-id: http://svn.miranda-ng.org/main/trunk@1281 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/modules.cpp')
-rw-r--r-- | src/core/modules.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/modules.cpp b/src/core/modules.cpp index a1fd29b5c3..5969fdcd0e 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -44,6 +44,7 @@ int LoadIgnoreModule(void); // protocol filter: ignore int LoadDbintfModule(void);
int LoadEventsModule(void);
+int LoadContactsModule(void);
int LoadContactListModule(void);// ui: clist
int LoadDatabaseModule(void);
int LoadOptionsModule(void); // ui: options dialog
@@ -142,6 +143,7 @@ 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
|