diff options
Diffstat (limited to 'lang/qt/src/qgpgmeverifydetachedjob.h')
-rw-r--r-- | lang/qt/src/qgpgmeverifydetachedjob.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/qt/src/qgpgmeverifydetachedjob.h b/lang/qt/src/qgpgmeverifydetachedjob.h index db502beb..6312d0a6 100644 --- a/lang/qt/src/qgpgmeverifydetachedjob.h +++ b/lang/qt/src/qgpgmeverifydetachedjob.h @@ -51,7 +51,7 @@ class QGpgMEVerifyDetachedJob #ifdef Q_MOC_RUN : public VerifyDetachedJob #else - : public _detail::ThreadedJobMixin<VerifyDetachedJob, boost::tuple<GpgME::VerificationResult, QString, GpgME::Error> > + : public _detail::ThreadedJobMixin<VerifyDetachedJob, std::tuple<GpgME::VerificationResult, QString, GpgME::Error> > #endif { Q_OBJECT @@ -67,7 +67,7 @@ public: GpgME::Error start(const QByteArray &signature, const QByteArray &signedData) Q_DECL_OVERRIDE; /*! \reimp from VerifyDetachedJob */ - void start(const boost::shared_ptr<QIODevice> &signature, const boost::shared_ptr<QIODevice> &signedData) Q_DECL_OVERRIDE; + void start(const std::shared_ptr<QIODevice> &signature, const std::shared_ptr<QIODevice> &signedData) Q_DECL_OVERRIDE; /*! \reimp from VerifyDetachedJob */ GpgME::VerificationResult exec(const QByteArray &signature, |