diff options
author | saturneric <[email protected]> | 2023-10-25 14:28:25 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-25 14:28:25 +0000 |
commit | b7ceed0b87752077fe19fefe9b0df8ec27ce0531 (patch) | |
tree | 51cb5f2a9210dabaa585b65d085f336cc5f0f844 /src/ui/main_window/MainWindow.cpp | |
parent | fix: solve some code tidy issues (diff) | |
download | GpgFrontend-b7ceed0b87752077fe19fefe9b0df8ec27ce0531.tar.gz GpgFrontend-b7ceed0b87752077fe19fefe9b0df8ec27ce0531.zip |
feat: moving gnupg info gathering logic to a new module
Diffstat (limited to 'src/ui/main_window/MainWindow.cpp')
-rw-r--r-- | src/ui/main_window/MainWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindow.cpp b/src/ui/main_window/MainWindow.cpp index fdad9ad1..46d72361 100644 --- a/src/ui/main_window/MainWindow.cpp +++ b/src/ui/main_window/MainWindow.cpp @@ -136,7 +136,8 @@ void MainWindow::Init() noexcept { this, Module::GetRealModuleIdentifier( "com.bktus.gpgfrontend.module.integrated.versionchecking"), - "version.loading_done", [=](Module::Namespace, Module::Key, int) { + "version.loading_done", + [=](Module::Namespace, Module::Key, int, std::any) { SPDLOG_DEBUG( "versionchecking version.loading_done changed, calling slot " "version upgrade"); |