diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-08 22:00:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-08 22:00:25 +0000 |
commit | 18aec330d11e9e5acdfd032e5f614beed08eaa0c (patch) | |
tree | e31c1794a91738740537092b663ff7e567459ca3 /src/core/modules.cpp | |
parent | 3be534c7528386c00bc31fca9c15b87d214f5cc1 (diff) |
fix for clicking on extra icons (for all plugins but clist nicer+)
git-svn-id: http://svn.miranda-ng.org/main/trunk@2250 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/modules.cpp')
-rw-r--r-- | src/core/modules.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/modules.cpp b/src/core/modules.cpp index 3efee23a99..b6ddb33cf0 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -88,7 +88,7 @@ int LoadDescButtonModule(); int LoadDefaultModules(void)
{
- //load order is very important for these
+ //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
CheckRestart();
@@ -97,7 +97,7 @@ int LoadDefaultModules(void) if ( LoadHeaderbarModule()) return 1;
if ( LoadDbintfModule()) return 1;
if ( LoadEventsModule()) return 1;
-
+
// load database drivers & service plugins without executing their Load()
if ( LoadNewPluginsModuleInfos()) return 1;
@@ -152,7 +152,7 @@ int LoadDefaultModules(void) if ( LoadAccountsModule()) return 1;
- //order becomes less important below here
+ //order becomes less important below here
if ( LoadFindAddModule()) return 1;
if ( LoadIgnoreModule()) return 1;
if ( LoadVisibilityModule()) return 1;
|