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
This commit is contained in:
Ingo Klöcker 2022-04-29 11:24:36 +02:00
parent fd97cbaa44
commit f4c3560925

View File

@ -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 = {});
};
}