aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/VerifyKeyDetailBox.h
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2021-12-07 08:37:54 +0000
committerGitHub <[email protected]>2021-12-07 08:37:54 +0000
commitcc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c (patch)
tree865d2298d836c8eb36584b5d268325bca4a66a78 /src/ui/widgets/VerifyKeyDetailBox.h
parentMerge pull request #26 from saturneric/develop (diff)
parentFix Bugs on KeyUploadDialog (diff)
downloadGpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.tar.gz
GpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.zip
Merge pull request #28 from saturneric/develop
Diffstat (limited to 'src/ui/widgets/VerifyKeyDetailBox.h')
-rw-r--r--src/ui/widgets/VerifyKeyDetailBox.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/ui/widgets/VerifyKeyDetailBox.h b/src/ui/widgets/VerifyKeyDetailBox.h
index c1b26bb2..b01d628d 100644
--- a/src/ui/widgets/VerifyKeyDetailBox.h
+++ b/src/ui/widgets/VerifyKeyDetailBox.h
@@ -33,21 +33,16 @@ namespace GpgFrontend::UI {
class VerifyKeyDetailBox : public QGroupBox {
Q_OBJECT
public:
- explicit VerifyKeyDetailBox(QWidget* parent, KeyList* mKeyList,
- gpgme_signature_t signature);
+ explicit VerifyKeyDetailBox(const GpgSignature& signature, QWidget* parent);
private slots:
void slotImportFormKeyserver();
private:
- KeyList* mKeyList;
+ QGridLayout* createKeyInfoGrid(const GpgSignature& signature);
- static QString beautifyFingerprint(QString fingerprint);
-
- static QGridLayout* createKeyInfoGrid(gpgme_signature_t& signature);
-
- QString fpr;
+ std::string fpr;
};
} // namespace GpgFrontend::UI