aboutsummaryrefslogtreecommitdiffstats
path: root/verifydetailsdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'verifydetailsdialog.h')
-rw-r--r--verifydetailsdialog.h5
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;
};