aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/key_generate/KeygenDialog.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-12-02 07:23:01 +0000
committersaturneric <[email protected]>2023-12-02 07:23:01 +0000
commit8a63c3954d6745c5e323dcf3e518219ce6545cc0 (patch)
treea41caf8801d0dceea3a2882626bbfb5b06c279b5 /src/ui/dialog/key_generate/KeygenDialog.cpp
parentfix: discover and fix some bugs (diff)
downloadGpgFrontend-8a63c3954d6745c5e323dcf3e518219ce6545cc0.tar.gz
GpgFrontend-8a63c3954d6745c5e323dcf3e518219ce6545cc0.zip
fix: add set owner struct action in keymanager menu
Diffstat (limited to 'src/ui/dialog/key_generate/KeygenDialog.cpp')
-rw-r--r--src/ui/dialog/key_generate/KeygenDialog.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ui/dialog/key_generate/KeygenDialog.cpp b/src/ui/dialog/key_generate/KeygenDialog.cpp
index f7afeef9..a70e27d1 100644
--- a/src/ui/dialog/key_generate/KeygenDialog.cpp
+++ b/src/ui/dialog/key_generate/KeygenDialog.cpp
@@ -35,7 +35,7 @@
#include "core/function/gpg/GpgKeyOpera.h"
#include "core/utils/CacheUtils.h"
#include "dialog/WaitingDialog.h"
-#include "ui/SignalStation.h"
+#include "ui/UISignalStation.h"
namespace GpgFrontend::UI {
@@ -61,8 +61,9 @@ KeyGenDialog::KeyGenDialog(QWidget* parent)
this->setWindowTitle(_("Generate Key"));
this->setModal(true);
- connect(this, &KeyGenDialog::SignalKeyGenerated, SignalStation::GetInstance(),
- &SignalStation::SignalKeyDatabaseRefresh);
+ connect(this, &KeyGenDialog::SignalKeyGenerated,
+ UISignalStation::GetInstance(),
+ &UISignalStation::SignalKeyDatabaseRefresh);
generate_key_dialog();
}