diff options
author | Ubbo Veentjer <[email protected]> | 2017-12-30 23:50:55 +0000 |
---|---|---|
committer | Ubbo Veentjer <[email protected]> | 2017-12-30 23:50:55 +0000 |
commit | d327c06ebb5138359e875e8f9a7ac242de45c158 (patch) | |
tree | 653664e755ddbfcc00389e2a0075a2a2386536b1 /verifydetailsdialog.h | |
parent | recommit of a06539af3448396f56a44d6859f2a54b787cdd8d (sign files integrated) (diff) | |
download | gpg4usb-d327c06ebb5138359e875e8f9a7ac242de45c158.tar.gz gpg4usb-d327c06ebb5138359e875e8f9a7ac242de45c158.zip |
verify files readded (4ecc173307c8c1ed13f28b6955484a484a25402a to 7c874c55c8242baaa770c46718a5c66b3bf8284a)
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 c71afda..b138f46 100644 --- a/verifydetailsdialog.h +++ b/verifydetailsdialog.h @@ -30,7 +30,7 @@ class VerifyDetailsDialog : public QDialog { Q_OBJECT public: - explicit VerifyDetailsDialog(QWidget *parent, GpgME::GpgContext* ctx, KeyList* mKeyList, QTextEdit *edit); + explicit VerifyDetailsDialog(QWidget *parent, GpgME::GpgContext* ctx, KeyList* mKeyList, QByteArray* inputData, QByteArray* inputSignature = 0); private slots: void slotRefresh(); @@ -40,7 +40,8 @@ private: KeyList *mKeyList; QHBoxLayout *mainLayout; QWidget *mVbox; - QTextEdit *mTextpage; /** Textedit associated to the notification */ + QByteArray* mInputData; /** Data to be verified */ + QByteArray* mInputSignature; /** Data to be verified */ QDialogButtonBox* buttonBox; }; |