diff options
Diffstat (limited to 'src/before_exit.cpp')
-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(); } |