aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/VerifyKeyDetailBox.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-07-04 19:13:51 +0000
committerSaturneric <[email protected]>2021-07-04 19:13:51 +0000
commit5846ce6d613eb84dcd61b468155a6d36dbdcfdf7 (patch)
tree5e435375aed59972d473a8dbd06ca8a3cb18edb5 /src/ui/widgets/VerifyKeyDetailBox.cpp
parentImprove UI; Improve File Opera; (diff)
downloadGpgFrontend-5846ce6d613eb84dcd61b468155a6d36dbdcfdf7.tar.gz
GpgFrontend-5846ce6d613eb84dcd61b468155a6d36dbdcfdf7.zip
Adjust and improve the basic settings page
Other improvements
Diffstat (limited to 'src/ui/widgets/VerifyKeyDetailBox.cpp')
-rw-r--r--src/ui/widgets/VerifyKeyDetailBox.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ui/widgets/VerifyKeyDetailBox.cpp b/src/ui/widgets/VerifyKeyDetailBox.cpp
index 3a0695b8..e0f79c3e 100644
--- a/src/ui/widgets/VerifyKeyDetailBox.cpp
+++ b/src/ui/widgets/VerifyKeyDetailBox.cpp
@@ -26,10 +26,7 @@
VerifyKeyDetailBox::VerifyKeyDetailBox(QWidget *parent, GpgME::GpgContext *ctx, KeyList *keyList,
gpgme_signature_t signature) :
- QGroupBox(parent) {
- this->mCtx = ctx;
- this->mKeyList = keyList;
- this->fpr = signature->fpr;
+ QGroupBox(parent), mCtx(ctx), mKeyList(keyList), fpr(signature->fpr) {
auto *vbox = new QVBoxLayout();