diff options
author | Ingo Klöcker <[email protected]> | 2020-11-03 12:50:53 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2020-11-03 12:50:53 +0000 |
commit | 0fee135997438c63ab30891ec7e662093ec57491 (patch) | |
tree | 549ccce6d08a029165476ccdc3b299ceee2e0b36 /lang/qt/src | |
parent | cpp: Mark helper functions as static (diff) | |
download | gpgme-0fee135997438c63ab30891ec7e662093ec57491.tar.gz gpgme-0fee135997438c63ab30891ec7e662093ec57491.zip |
qt: Make audit parameters of result signal optional
lang/qt/src/quickjob.h (QuickJob::result): Make parameters
auditLogAsHtml and audigLogError optional.
--
This aligns the signature of QuickJob's result signal with the result
signals of the other Job subclasses.
GnuPG-bug-id: 5094
Diffstat (limited to 'lang/qt/src')
-rw-r--r-- | lang/qt/src/quickjob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/quickjob.h b/lang/qt/src/quickjob.h index 82c9d89d..5d3473fd 100644 --- a/lang/qt/src/quickjob.h +++ b/lang/qt/src/quickjob.h @@ -87,7 +87,7 @@ public: Q_SIGNALS: void result(const GpgME::Error &error, - const QString &auditLogAsHtml, const GpgME::Error &auditLogError); + const QString &auditLogAsHtml = QString(), const GpgME::Error &auditLogError = GpgME::Error()); }; } |