diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-12 21:08:32 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-12 21:08:32 +0000 |
commit | a21359c80a4ca2a2c6082faf68054f9538f7c4a8 (patch) | |
tree | ac4a8e173468a8f006160454f4f1fcd30f95df27 /verifydetailsdialog.h | |
parent | moved textissigned to context (diff) | |
download | gpg4usb-a21359c80a4ca2a2c6082faf68054f9538f7c4a8.tar.gz gpg4usb-a21359c80a4ca2a2c6082faf68054f9538f7c4a8.zip |
verifynotification and verifydetailsdialog is refreshed on keylist-change, bt keydetailsdialog is doubled on keylist-change
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@546 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'verifydetailsdialog.h')
-rw-r--r-- | verifydetailsdialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/verifydetailsdialog.h b/verifydetailsdialog.h index 8e24455..afcdfe0 100644 --- a/verifydetailsdialog.h +++ b/verifydetailsdialog.h @@ -22,6 +22,7 @@ #ifndef __VERIFYDETAILSDIALOG_H__ #define __VERIFYDETAILSDIALOG_H__ +#include "editorpage.h" #include "verifykeydetailbox.h" #include <QDialog> @@ -29,7 +30,7 @@ class VerifyDetailsDialog : public QDialog { Q_OBJECT public: - explicit VerifyDetailsDialog(QWidget *parent, GpgME::Context* ctx, KeyList* mKeyList, gpgme_signature_t signature); + explicit VerifyDetailsDialog(QWidget *parent, GpgME::Context* ctx, KeyList* mKeyList, QPlainTextEdit *edit); private slots: void refresh(); @@ -38,6 +39,7 @@ private: GpgME::Context* mCtx; KeyList* mKeyList; QVBoxLayout* mVbox; + QPlainTextEdit *mTextpage; /** Textedit associated to the notification */ QDialogButtonBox* buttonBox; }; |