diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-27 08:54:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-27 08:54:36 +0000 |
commit | d9da7f147fbe91d2e70721de96907ae1d273b591 (patch) | |
tree | 09eb8cb7934ab23a2c7a1588866b7c2ce21186be /src/core/modules.cpp | |
parent | 76af3716fe56e728b2cad2df2bec7bb4a5b1c8df (diff) |
- langpack returned back;
- fixes for the 64-bit compilation issues
git-svn-id: http://svn.miranda-ng.org/main/trunk@651 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/modules.cpp')
-rw-r--r-- | src/core/modules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/modules.cpp b/src/core/modules.cpp index 11e93f1354..8dbbf54e63 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -36,7 +36,7 @@ int LoadNewPluginsModule(void); // core: N.O. plugins int LoadSslModule(void);
int LoadNetlibModule(void); // core: network
void NetlibInitSsl(void);
-int LoadLangPackModule(void); // core: translation
+int LoadLangpackModule(void); // core: translation
int LoadProtocolsModule(void); // core: protocol manager
int LoadAccountsModule(void); // core: account manager
int LoadIgnoreModule(void); // protocol filter: ignore
@@ -97,7 +97,7 @@ int LoadDefaultModules(void) {
//load order is very important for these
if ( LoadSystemModule()) return 1;
- if ( LoadLangPackModule()) return 1; // langpack will be a system module in the new order so this is moved here
+ if ( LoadLangpackModule()) return 1; // langpack will be a system module in the new order so this is moved here
ParseCommandLine(); // IDD_WAITRESTART need langpack so this is moved here
if ( LoadUtilsModule()) return 1; //order not important for this, but no dependencies and no point in pluginising
if ( LoadIcoTabsModule()) return 1;
|