diff options
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index 76c1fd4c..b3156d1f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -31,9 +31,9 @@ #include "core/GpgCoreInit.h" #include "core/function/GlobalSettingStation.h" #include "core/function/gpg/GpgAdvancedOperator.h" +#include "core/module/ModuleInit.h" #include "core/thread/TaskRunnerGetter.h" #include "core/utils/LogUtils.h" -#include "module/GpgFrontendModuleInit.h" #include "ui/GpgFrontendUIInit.h" // main @@ -106,7 +106,7 @@ void InitGlobalPathEnv() { } } -void InitGlobalBasicalEnv(const GFCxtWPtr &p_ctx, bool gui_mode) { +void InitGlobalBasicEnv(const GFCxtWPtr &p_ctx, bool gui_mode) { GFCxtSPtr ctx = p_ctx.lock(); if (ctx == nullptr) { return; @@ -161,7 +161,7 @@ void InitLocale() { QLocale::setDefault(target_locale); } -void ShutdownGlobalBasicalEnv(const GFCxtWPtr &p_ctx) { +void ShutdownGlobalBasicEnv(const GFCxtWPtr &p_ctx) { GFCxtSPtr ctx = p_ctx.lock(); if (ctx == nullptr) { return; |