diff options
author | saturneric <[email protected]> | 2024-05-03 19:08:04 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-05-03 19:08:04 +0000 |
commit | 149d2789db76fd9831b5571696c04048ff568f28 (patch) | |
tree | 5e0f530fa51a4092a6db46110b64153ae57bf5b2 /src/ui/GpgFrontendUIInit.cpp | |
parent | fix: off but still can edit (diff) | |
download | GpgFrontend-149d2789db76fd9831b5571696c04048ff568f28.tar.gz GpgFrontend-149d2789db76fd9831b5571696c04048ff568f28.zip |
fix: solve safe issues
Diffstat (limited to 'src/ui/GpgFrontendUIInit.cpp')
-rw-r--r-- | src/ui/GpgFrontendUIInit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/GpgFrontendUIInit.cpp b/src/ui/GpgFrontendUIInit.cpp index 7b18e78c..046c25d7 100644 --- a/src/ui/GpgFrontendUIInit.cpp +++ b/src/ui/GpgFrontendUIInit.cpp @@ -77,14 +77,14 @@ void WaitEnvCheckingProcess() { &QEventLoop::quit); QApplication::connect(waiting_dialog, &QProgressDialog::canceled, [=]() { - GF_UI_LOG_DEBUG("cancel clicked on wairing dialog"); + GF_UI_LOG_DEBUG("cancel clicked on waiting dialog"); QApplication::quit(); exit(0); }); auto env_state = Module::RetrieveRTValueTypedOrDefault<>("core", "env.state.basic", 0); - GF_UI_LOG_DEBUG("ui is ready to wating for env initialized, env_state: {}", + GF_UI_LOG_DEBUG("ui is ready to waiting for env initialized, env_state: {}", env_state); // check twice to avoid some unlucky sitations |