diff options
Diffstat (limited to 'lang/qt/src/qgpgmesignarchivejob.cpp')
-rw-r--r-- | lang/qt/src/qgpgmesignarchivejob.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/qt/src/qgpgmesignarchivejob.cpp b/lang/qt/src/qgpgmesignarchivejob.cpp index 0a99627a..cd569f31 100644 --- a/lang/qt/src/qgpgmesignarchivejob.cpp +++ b/lang/qt/src/qgpgmesignarchivejob.cpp @@ -78,6 +78,9 @@ QGpgMESignArchiveJob::QGpgMESignArchiveJob(Context *context) { setJobPrivate(this, std::unique_ptr<QGpgMESignArchiveJobPrivate>{new QGpgMESignArchiveJobPrivate{this}}); lateInitialization(); + connect(this, &Job::rawProgress, this, [this](const QString &what, int type, int current, int total) { + emitArchiveProgressSignals(this, what, type, current, total); + }); } static QGpgMESignArchiveJob::result_type sign(Context *ctx, |