summaryrefslogtreecommitdiffstats
path: root/src/pass.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/pass.cpp
parent2412ec533faf0dc1f4c762bdd4ed812afd0a48eb (diff)
Fixed depracation warnings in Qt 5.15
Diffstat (limited to 'src/pass.cpp')
-rw-r--r--src/pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pass.cpp b/src/pass.cpp
index cd198f26..5e2b4ee1 100644
--- a/src/pass.cpp
+++ b/src/pass.cpp
@@ -139,7 +139,7 @@ QList<UserInfo> Pass::listKeys(QStringList keystrings, bool secret) {
if (exec.executeBlocking(QtPassSettings::getGpgExecutable(), args, &p_out) !=
0)
return users;
- QStringList keys = p_out.split(QRegExp("[\r\n]"), QString::SkipEmptyParts);
+ QStringList keys = p_out.split(QRegExp("[\r\n]"), Qt::SkipEmptyParts);
UserInfo current_user;
foreach (QString key, keys) {
QStringList props = key.split(':');