summaryrefslogtreecommitdiffstats
path: root/src/imitatepass.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2020-05-30 02:23:09 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2020-05-30 02:23:09 +0200
commited15f31e5887495f5092458c945d212ff05a7290 (patch)
tree92b2c6bc54fd10cd667e2b89b5d75523efe004a2 /src/imitatepass.cpp
parent2412ec533faf0dc1f4c762bdd4ed812afd0a48eb (diff)
Fixed depracation warnings in Qt 5.15
Diffstat (limited to 'src/imitatepass.cpp')
-rw-r--r--src/imitatepass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imitatepass.cpp b/src/imitatepass.cpp
index 236923d6..e4314d90 100644
--- a/src/imitatepass.cpp
+++ b/src/imitatepass.cpp
@@ -263,7 +263,7 @@ void ImitatePass::reencryptPath(const QString &dir) {
exec.executeBlocking(QtPassSettings::getGpgExecutable(), args, &keys, &err);
QStringList actualKeys;
keys += err;
- QStringList key = keys.split(QRegExp("[\r\n]"), QString::SkipEmptyParts);
+ QStringList key = keys.split(QRegExp("[\r\n]"), Qt::SkipEmptyParts);
QListIterator<QString> itr(key);
while (itr.hasNext()) {
QString current = itr.next();