aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmedecryptjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/qgpgmedecryptjob.h')
-rw-r--r--lang/qt/src/qgpgmedecryptjob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/qt/src/qgpgmedecryptjob.h b/lang/qt/src/qgpgmedecryptjob.h
index 55eb26ec..e87120b2 100644
--- a/lang/qt/src/qgpgmedecryptjob.h
+++ b/lang/qt/src/qgpgmedecryptjob.h
@@ -51,7 +51,7 @@ class QGpgMEDecryptJob
#ifdef Q_MOC_RUN
: public DecryptJob
#else
- : public _detail::ThreadedJobMixin<DecryptJob, boost::tuple<GpgME::DecryptionResult, QByteArray, QString, GpgME::Error> >
+ : public _detail::ThreadedJobMixin<DecryptJob, std::tuple<GpgME::DecryptionResult, QByteArray, QString, GpgME::Error> >
#endif
{
Q_OBJECT
@@ -67,7 +67,7 @@ public:
GpgME::Error start(const QByteArray &cipherText) Q_DECL_OVERRIDE;
/*! \reimp from DecryptJob */
- void start(const boost::shared_ptr<QIODevice> &cipherText, const boost::shared_ptr<QIODevice> &plainText) Q_DECL_OVERRIDE;
+ void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText) Q_DECL_OVERRIDE;
/*! \reimp from DecryptJob */
GpgME::DecryptionResult exec(const QByteArray &cipherText,