diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-09-17 23:38:38 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-09-17 23:38:38 +0000 |
commit | df4ac17bf20ef8e7c666e925ef0b2fb1246f7dbb (patch) | |
tree | 9bb04b91b83c980066a8acf176ac1f6928d5b9ba /verifydetailsdialog.h | |
parent | bautify fingerprints in verifydetails and verifynotification (diff) | |
download | gpg4usb-df4ac17bf20ef8e7c666e925ef0b2fb1246f7dbb.tar.gz gpg4usb-df4ac17bf20ef8e7c666e925ef0b2fb1246f7dbb.zip |
add import button for ever single missing key in verifydetailsdialog
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@534 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'verifydetailsdialog.h')
-rw-r--r-- | verifydetailsdialog.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/verifydetailsdialog.h b/verifydetailsdialog.h index 0678ad0..5ad3c0a 100644 --- a/verifydetailsdialog.h +++ b/verifydetailsdialog.h @@ -3,6 +3,7 @@ #include "context.h" #include "keylist.h" +#include "verifykeydetailbox.h" #include <QDialog> class VerifyDetailsDialog : public QDialog @@ -12,10 +13,10 @@ public: explicit VerifyDetailsDialog(QWidget *parent, GpgME::Context* ctx, KeyList* mKeyList, gpgme_signature_t signature); private: - QGroupBox* addDetailBox( gpgme_signature_t signature ); GpgME::Context* mCtx; KeyList* mKeyList; - QString beautifyFingerprint(QString fingerprint); + QVBoxLayout* mVbox; + QDialogButtonBox* buttonBox; }; #endif // __VERIFYDETAILSDIALOG_H__ |