summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorIngo Klöcker <dev@ingo-kloecker.de>2022-05-05 10:39:26 +0200
committerIngo Klöcker <dev@ingo-kloecker.de>2022-05-05 10:39:26 +0200
commit9e8c8e448ec83c454fb310f80ce0bf9f828a7145 (patch)
tree860fb83ab9aa3740e91b9f6abfd8ccbcc9a26419 /lang
parent15a4940aa73019bce002302b14aaa73312da3df4 (diff)
downloadgpgme-9e8c8e448ec83c454fb310f80ce0bf9f828a7145.tar.gz
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')
-rw-r--r--lang/qt/src/refreshkeysjob.h2
-rw-r--r--lang/qt/tests/run-refreshkeysjob.cpp2
2 files changed, 2 insertions, 2 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);
};
}
diff --git a/lang/qt/tests/run-refreshkeysjob.cpp b/lang/qt/tests/run-refreshkeysjob.cpp
index 4c8f4086..aa9a6d62 100644
--- a/lang/qt/tests/run-refreshkeysjob.cpp
+++ b/lang/qt/tests/run-refreshkeysjob.cpp
@@ -140,7 +140,7 @@ int main(int argc, char **argv)
std::cerr << "Error: Could not create job to refresh S/MIME key" << std::endl;
return 1;
}
- QObject::connect(job, &QGpgME::RefreshKeysJob::result, &app, [](const GpgME::Error &err, const QString &, const GpgME::Error &) {
+ QObject::connect(job, &QGpgME::RefreshKeysJob::result, &app, [](const GpgME::Error &err) {
std::cout << "Result: " << err.asString() << std::endl;
qApp->quit();
});