diff options
author | Saturneric <[email protected]> | 2022-02-06 09:34:14 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-02-06 09:34:39 +0000 |
commit | cacca627a62ab2eba9eb4d37cfea40629ca0a89a (patch) | |
tree | c596c3c2252ebb0e3792ab4c561d7c7cd3f3e4b0 /src/before_exit.cpp | |
parent | <refactor>(core, ui): Adjust the core code directory structure. (diff) | |
download | GpgFrontend-cacca627a62ab2eba9eb4d37cfea40629ca0a89a.tar.gz GpgFrontend-cacca627a62ab2eba9eb4d37cfea40629ca0a89a.zip |
<refactor>(src): Move and split the Global Settings Station
1. Move Global Settings Station to core
2. Separate the logic of DataObject
3. Resolve dependencies
Diffstat (limited to '')
-rw-r--r-- | src/before_exit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/before_exit.cpp b/src/before_exit.cpp index abdf7d62..50604a54 100644 --- a/src/before_exit.cpp +++ b/src/before_exit.cpp @@ -26,7 +26,7 @@ * */ -#include "ui/settings/GlobalSettingStation.h" +#include "core/function/GlobalSettingStation.h" /** * @brief Actions performed before exiting the application @@ -34,5 +34,5 @@ */ void before_exit() { LOG(INFO) << "called"; - GpgFrontend::UI::GlobalSettingStation::GetInstance().ResetRootCerts(); + GpgFrontend::GlobalSettingStation::GetInstance().ResetRootCerts(); } |