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