summaryrefslogtreecommitdiffstats
path: root/src/keygendialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/keygendialog.cpp')
-rw-r--r--src/keygendialog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/keygendialog.cpp b/src/keygendialog.cpp
index ef50f434..ba1efdb0 100644
--- a/src/keygendialog.cpp
+++ b/src/keygendialog.cpp
@@ -88,8 +88,7 @@ void KeygenDialog::replace(const QString &key, const QString &value) {
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
const QStringList lines = expert.split(newLines, Qt::SkipEmptyParts);
#else
- const QStringList lines =
- expert.split(newLines, QString::SkipEmptyParts);
+ const QStringList lines = expert.split(newLines, QString::SkipEmptyParts);
#endif
for (QString line : lines) {
line.replace(QRegularExpression(key + ":.*"), key + ": " + value);