diff options
author | Saturneric <[email protected]> | 2021-07-04 19:13:51 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-04 19:13:51 +0000 |
commit | 5846ce6d613eb84dcd61b468155a6d36dbdcfdf7 (patch) | |
tree | 5e435375aed59972d473a8dbd06ca8a3cb18edb5 /src/ui/widgets/VerifyKeyDetailBox.cpp | |
parent | Improve UI; Improve File Opera; (diff) | |
download | GpgFrontend-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.cpp | 5 |
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(); |