diff options
author | Ingo Klöcker <[email protected]> | 2022-05-05 08:39:26 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2022-05-05 08:39:26 +0000 |
commit | 9e8c8e448ec83c454fb310f80ce0bf9f828a7145 (patch) | |
tree | 860fb83ab9aa3740e91b9f6abfd8ccbcc9a26419 /lang/qt/src/refreshkeysjob.h | |
parent | qt: Use lambda instead of std::bind (diff) | |
download | gpgme-9e8c8e448ec83c454fb310f80ce0bf9f828a7145.tar.gz gpgme-9e8c8e448ec83c454fb310f80ce0bf9f828a7145.zip |
qt: Revert change of result signal of RefreshKeysJob
* lang/qt/src/refreshkeysjob.h (RefreshKeysJob::result): Remove optional
parameters auditLogAsHtml and auditLogError.
* lang/qt/tests/run-refreshkeysjob.cpp (main): Update accordingly.
--
This reverts f4c35609257156d0e32b8dd7315011b484919f05. The reason for
the previous change does no longer apply.
GnuPG-bug-id: 5951
Diffstat (limited to 'lang/qt/src/refreshkeysjob.h')
-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 92b3b8f4..6bd748ac 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 &result, const QString &auditLogAsHtml = {}, const GpgME::Error &auditLogError = {}); + void result(const GpgME::Error &result); }; } |