diff options
author | Ingo Klöcker <[email protected]> | 2022-04-29 09:24:36 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2022-04-29 09:24:36 +0000 |
commit | f4c35609257156d0e32b8dd7315011b484919f05 (patch) | |
tree | 65a37d79c1198f216e8c30ee6c5f22f99098c337 | |
parent | qt: Allow refreshing a list of keys (diff) | |
download | gpgme-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.h | 2 |
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 = {}); }; } |