aboutsummaryrefslogtreecommitdiffstats
path: root/verifykeydetailbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'verifykeydetailbox.cpp')
-rw-r--r--verifykeydetailbox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/verifykeydetailbox.cpp b/verifykeydetailbox.cpp
index 968d1f1..8070ed9 100644
--- a/verifykeydetailbox.cpp
+++ b/verifykeydetailbox.cpp
@@ -21,16 +21,16 @@
#include "verifykeydetailbox.h"
-VerifyKeyDetailBox::VerifyKeyDetailBox(QWidget *parent, GpgME::GpgContext* ctx, KeyList* keyList, gpgme_signature_t signature) :
+VerifyKeyDetailBox::VerifyKeyDetailBox(QWidget *parent, GpgME::GpgContext* ctx, KeyList* keyList, KGpgVerify signature) :
QGroupBox(parent)
{
this->mCtx = ctx;
this->mKeyList = keyList;
- this->fpr=signature->fpr;
+ //this->fpr=signature->fpr;
QGridLayout *grid = new QGridLayout();
-
- switch (gpg_err_code(signature->status))
+// TODO
+/* switch (gpg_err_code(signature->status))
{
case GPG_ERR_NO_PUBKEY:
{
@@ -80,7 +80,7 @@ VerifyKeyDetailBox::VerifyKeyDetailBox(QWidget *parent, GpgME::GpgContext* ctx,
break;
}
- }
+ }*/
this->setLayout(grid);
}