aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmekeygenerationjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/qgpgmekeygenerationjob.cpp')
-rw-r--r--lang/qt/src/qgpgmekeygenerationjob.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/qt/src/qgpgmekeygenerationjob.cpp b/lang/qt/src/qgpgmekeygenerationjob.cpp
index ad2904e2..d286ed59 100644
--- a/lang/qt/src/qgpgmekeygenerationjob.cpp
+++ b/lang/qt/src/qgpgmekeygenerationjob.cpp
@@ -42,7 +42,6 @@
using namespace QGpgME;
using namespace GpgME;
-using namespace boost;
QGpgMEKeyGenerationJob::QGpgMEKeyGenerationJob(Context *context)
: mixin_type(context)
@@ -66,7 +65,7 @@ static QGpgMEKeyGenerationJob::result_type generate_key(Context *ctx, const QStr
Error QGpgMEKeyGenerationJob::start(const QString &parameters)
{
- run(bind(&generate_key, _1, parameters));
+ run(std::bind(&generate_key, std::placeholders::_1, parameters));
return Error();
}
#include "qgpgmekeygenerationjob.moc"