diff options
author | saturneric <[email protected]> | 2023-12-02 07:23:01 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-12-02 07:23:01 +0000 |
commit | 8a63c3954d6745c5e323dcf3e518219ce6545cc0 (patch) | |
tree | a41caf8801d0dceea3a2882626bbfb5b06c279b5 /src/ui/dialog/keypair_details/KeyPairDetailTab.cpp | |
parent | fix: discover and fix some bugs (diff) | |
download | GpgFrontend-8a63c3954d6745c5e323dcf3e518219ce6545cc0.tar.gz GpgFrontend-8a63c3954d6745c5e323dcf3e518219ce6545cc0.zip |
fix: add set owner struct action in keymanager menu
Diffstat (limited to 'src/ui/dialog/keypair_details/KeyPairDetailTab.cpp')
-rw-r--r-- | src/ui/dialog/keypair_details/KeyPairDetailTab.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/keypair_details/KeyPairDetailTab.cpp b/src/ui/dialog/keypair_details/KeyPairDetailTab.cpp index 114f5df7..286192f2 100644 --- a/src/ui/dialog/keypair_details/KeyPairDetailTab.cpp +++ b/src/ui/dialog/keypair_details/KeyPairDetailTab.cpp @@ -33,7 +33,7 @@ #include "core/function/gpg/GpgKeyImportExporter.h" #include "core/model/GpgKey.h" #include "core/utils/CommonUtils.h" -#include "ui/SignalStation.h" +#include "ui/UISignalStation.h" #include "ui/dialog/WaitingDialog.h" namespace GpgFrontend::UI { @@ -160,8 +160,8 @@ KeyPairDetailTab::KeyPairDetailTab(const std::string& key_id, QWidget* parent) mvbox->setContentsMargins(0, 0, 0, 0); // when key database updated - connect(SignalStation::GetInstance(), - &SignalStation::SignalKeyDatabaseRefreshDone, this, + connect(UISignalStation::GetInstance(), + &UISignalStation::SignalKeyDatabaseRefreshDone, this, &KeyPairDetailTab::slot_refresh_key); slot_refresh_key_info(); |