aboutsummaryrefslogtreecommitdiffstats
path: root/src/init.cpp
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2024-05-11 17:18:36 +0000
committerGitHub <[email protected]>2024-05-11 17:18:36 +0000
commitf909f2c4c35b187eb165ec5545e35d54c6d92bf3 (patch)
tree428fe9e63ecae6bb93be6f20cd2b1ee9b29ffd8d /src/init.cpp
parentMerge pull request #145 from jermanuts/jermanuts-wizard-links-update (diff)
parentfix: remove qt5compat and redirect dll output path of modules (diff)
downloadGpgFrontend-f909f2c4c35b187eb165ec5545e35d54c6d92bf3.tar.gz
GpgFrontend-f909f2c4c35b187eb165ec5545e35d54c6d92bf3.zip
Merge pull request #148 from saturneric/develop
Develop 2.1.3.1
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp6
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;