From f4c35609257156d0e32b8dd7315011b484919f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Fri, 29 Apr 2022 11:24:36 +0200 Subject: [PATCH] qt: Make RefreshKeysJob result compatible with standard job result * lang/qt/src/refreshkeysjob.h (RefreshKeysJob::result): Add optional parameters auditLogAsHtml and auditLogError. -- This is necessary for the OpenPGP-implementation of this job. GnuPG-bug-id: 5951 --- lang/qt/src/refreshkeysjob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/qt/src/refreshkeysjob.h b/lang/qt/src/refreshkeysjob.h index b6978060..cc051fc3 100644 --- a/lang/qt/src/refreshkeysjob.h +++ b/lang/qt/src/refreshkeysjob.h @@ -88,7 +88,7 @@ public: virtual GpgME::Error start(const std::vector &keys) = 0; Q_SIGNALS: - void result(const GpgME::Error &error); + void result(const GpgME::Error &result, const QString &auditLogAsHtml = {}, const GpgME::Error &auditLogError = {}); }; }