aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2022-04-29 09:24:36 +0000
committerIngo Klöcker <[email protected]>2022-04-29 09:24:36 +0000
commitf4c35609257156d0e32b8dd7315011b484919f05 (patch)
tree65a37d79c1198f216e8c30ee6c5f22f99098c337
parentqt: Allow refreshing a list of keys (diff)
downloadgpgme-f4c35609257156d0e32b8dd7315011b484919f05.tar.gz
gpgme-f4c35609257156d0e32b8dd7315011b484919f05.zip
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
-rw-r--r--lang/qt/src/refreshkeysjob.h2
1 files changed, 1 insertions, 1 deletions
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<GpgME::Key> &keys) = 0;
Q_SIGNALS:
- void result(const GpgME::Error &error);
+ void result(const GpgME::Error &result, const QString &auditLogAsHtml = {}, const GpgME::Error &auditLogError = {});
};
}