summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-03-23 17:59:15 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-03-23 17:59:15 +0000
commit5579b582572dbb3e3c842604c753f3e60f0845b8 (patch)
treec756a3c5d193dd0286d07fcfc22bb8e87d7863ad /src/core
parent2b70918fbed7eacda8fa2f638dd1af6c70f0a9b8 (diff)
fix for the langpack module load order
git-svn-id: http://svn.miranda-ng.org/main/trunk@8714 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r--src/core/modules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/modules.cpp b/src/core/modules.cpp
index 909e1811f2..c567efce1d 100644
--- a/src/core/modules.cpp
+++ b/src/core/modules.cpp
@@ -118,6 +118,7 @@ int LoadDefaultModules(void)
if (LoadDatabaseModule()) return 1;
// database is available here
+ Langpack_LoadLangpack();
if (LoadButtonModule()) return 1;
if (LoadIcoLibModule()) return 1;
if (LoadSkinIcons()) return 1;
@@ -155,7 +156,6 @@ int LoadDefaultModules(void)
if (LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first
- Langpack_LoadLangpack();
Langpack_SortDuplicates();
if (LoadAccountsModule()) return 1;