aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmechangepasswdjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/qgpgmechangepasswdjob.cpp')
-rw-r--r--lang/qt/src/qgpgmechangepasswdjob.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/qt/src/qgpgmechangepasswdjob.cpp b/lang/qt/src/qgpgmechangepasswdjob.cpp
index eb9937fa..618ed1d5 100644
--- a/lang/qt/src/qgpgmechangepasswdjob.cpp
+++ b/lang/qt/src/qgpgmechangepasswdjob.cpp
@@ -44,7 +44,6 @@
using namespace QGpgME;
using namespace GpgME;
-using namespace boost;
QGpgMEChangePasswdJob::QGpgMEChangePasswdJob(Context *context)
: mixin_type(context)
@@ -73,7 +72,7 @@ static QGpgMEChangePasswdJob::result_type change_passwd(Context *ctx, const Key
Error QGpgMEChangePasswdJob::start(const Key &key)
{
- run(bind(&change_passwd, _1, key));
+ run(std::bind(&change_passwd, std::placeholders::_1, key));
return Error();
}