summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/miranda.h6
-rw-r--r--src/core/modules.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/core/miranda.h b/src/core/miranda.h
index 097a8546d0..b0369e0f08 100644
--- a/src/core/miranda.h
+++ b/src/core/miranda.h
@@ -140,9 +140,9 @@ int GetPluginFakeId(const MUUID &uuid, int hLangpack);
__forceinline char* Utf8DecodeA(const char* src)
{
- char* tmp = mir_strdup(src);
- Utf8Decode(tmp, NULL);
- return tmp;
+ char* tmp = mir_strdup(src);
+ Utf8Decode(tmp, NULL);
+ return tmp;
}
#pragma optimize("", on)
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;