aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/VerifyDetailsDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ui/VerifyDetailsDialog.h')
-rw-r--r--include/ui/VerifyDetailsDialog.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ui/VerifyDetailsDialog.h b/include/ui/VerifyDetailsDialog.h
index 571f7ba1..a1f28e5d 100644
--- a/include/ui/VerifyDetailsDialog.h
+++ b/include/ui/VerifyDetailsDialog.h
@@ -31,8 +31,8 @@
class VerifyDetailsDialog : public QDialog {
Q_OBJECT
public:
- explicit VerifyDetailsDialog(QWidget *parent, GpgME::GpgContext *ctx, KeyList *keyList,
- gpgme_signature_t signature);
+ explicit VerifyDetailsDialog(QWidget *parent, GpgME::GpgContext *ctx, KeyList *keyList, gpg_error_t error,
+ gpgme_verify_result_t result);
private slots:
@@ -47,6 +47,7 @@ private:
QByteArray *mInputSignature{}; /** Data to be verified */
QDialogButtonBox *buttonBox{};
gpgme_signature_t sign;
+ gpgme_error_t error;
};
#endif // __VERIFYDETAILSDIALOG_H__