diff options
author | saturneric <[email protected]> | 2024-08-05 16:31:57 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-08-05 16:31:57 +0000 |
commit | c44032dc67205e3b303190d0a7afdaa439e01560 (patch) | |
tree | 1688e4cbed888c759c33e7786bf663cdd9896d77 /src/ui/GpgFrontendUIInit.cpp | |
parent | fix: key server adding or switching is actually not working (diff) | |
download | GpgFrontend-c44032dc67205e3b303190d0a7afdaa439e01560.tar.gz GpgFrontend-c44032dc67205e3b303190d0a7afdaa439e01560.zip |
fix: correct spelling mistakes
Diffstat (limited to 'src/ui/GpgFrontendUIInit.cpp')
-rw-r--r-- | src/ui/GpgFrontendUIInit.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ui/GpgFrontendUIInit.cpp b/src/ui/GpgFrontendUIInit.cpp index 965ce471..9cca46c2 100644 --- a/src/ui/GpgFrontendUIInit.cpp +++ b/src/ui/GpgFrontendUIInit.cpp @@ -48,7 +48,7 @@ QList<QByteArray> loaded_qm_datum; extern void InitUITranslations(); void WaitEnvCheckingProcess() { - FLOG_D("need to waiting for env checking process"); + FLOG_D("need to wait for env checking process"); // create and show loading window before starting the main window auto* waiting_dialog = new QProgressDialog(); @@ -86,8 +86,7 @@ void WaitEnvCheckingProcess() { auto env_state = Module::RetrieveRTValueTypedOrDefault<>("core", "env.state.all", 0); - FLOG_D("ui is ready to waiting for env initialized, env_state: %d", - env_state); + FLOG_D("ui is ready to wait for env initialized, env_state: %d", env_state); // check twice to avoid some unlucky sitations if (env_state == 1) { @@ -200,7 +199,7 @@ void InitGpgFrontendUI(QApplication* /*app*/) { void WaitingAllInitializationFinished() { if (Module::RetrieveRTValueTypedOrDefault<>("core", "env.state.all", 0) == 0) { - LOG_D() << "ui init is done, but cor doesn't, going to waiting for core..."; + LOG_D() << "ui init is done, but core doesn't, going to wait for core..."; WaitEnvCheckingProcess(); } LOG_D() << "application fully initialized..."; |