summaryrefslogtreecommitdiffstats
path: root/src/realpass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/realpass.cpp')
-rw-r--r--src/realpass.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/realpass.cpp b/src/realpass.cpp
index bf420340..b91c05b7 100644
--- a/src/realpass.cpp
+++ b/src/realpass.cpp
@@ -3,6 +3,7 @@
#include <QDir>
#include <QFileInfo>
+#include <utility>
using namespace Enums;
@@ -176,6 +177,6 @@ void RealPass::Copy(const QString src, const QString dest, const bool force) {
*/
void RealPass::executePass(PROCESS id, const QStringList &args, QString input,
bool readStdout, bool readStderr) {
- executeWrapper(id, QtPassSettings::getPassExecutable(), args, input,
+ executeWrapper(id, QtPassSettings::getPassExecutable(), args, std::move(input),
readStdout, readStderr);
}