aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmechangeexpiryjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/qgpgmechangeexpiryjob.cpp')
-rw-r--r--lang/qt/src/qgpgmechangeexpiryjob.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/qt/src/qgpgmechangeexpiryjob.cpp b/lang/qt/src/qgpgmechangeexpiryjob.cpp
index d0a93d82..81a49fd1 100644
--- a/lang/qt/src/qgpgmechangeexpiryjob.cpp
+++ b/lang/qt/src/qgpgmechangeexpiryjob.cpp
@@ -48,7 +48,6 @@
using namespace QGpgME;
using namespace GpgME;
-using namespace boost;
QGpgMEChangeExpiryJob::QGpgMEChangeExpiryJob(Context *context)
: mixin_type(context)
@@ -76,7 +75,7 @@ static QGpgMEChangeExpiryJob::result_type change_expiry(Context *ctx, const Key
Error QGpgMEChangeExpiryJob::start(const Key &key, const QDateTime &expiry)
{
- run(bind(&change_expiry, _1, key, expiry));
+ run(std::bind(&change_expiry, std::placeholders::_1, key, expiry));
return Error();
}
#include "qgpgmechangeexpiryjob.moc"