diff options
author | saturneric <[email protected]> | 2024-05-03 14:47:08 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-05-03 14:47:08 +0000 |
commit | b5f7516f77ef8e0949115ff3ad01f6c7b1658537 (patch) | |
tree | 44378bd4fdaa7c9a278fa7f766f58d709166e0c8 /src/init.cpp | |
parent | feat: support theme changing by user (diff) | |
download | GpgFrontend-b5f7516f77ef8e0949115ff3ad01f6c7b1658537.tar.gz GpgFrontend-b5f7516f77ef8e0949115ff3ad01f6c7b1658537.zip |
fix: correct some spelling mistakes
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index e5936d31..b3156d1f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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; |