Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-11-07 11:41:14 +0300
committerHannah von Reth <vonreth@kde.org>2022-11-07 13:50:25 +0300
commit0214f37c6050048e31e96f1b9cbf9bb19d01b375 (patch)
treedb4af7dd41ef3910d7179d360b2840d925dd8334
parent2ce67a049b1babd0d182653778de63a13f30345b (diff)
Fix two years old off by one
-rw-r--r--src/libsync/theme.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp
index 01fb2dde9..dbe7c772c 100644
--- a/src/libsync/theme.cpp
+++ b/src/libsync/theme.cpp
@@ -410,7 +410,7 @@ QString Theme::aboutVersions(Theme::VersionFormat format) const
Q_UNREACHABLE();
}();
const QString qtVersion = QString::fromUtf8(qVersion());
- const QString qtVersionString = (QLatin1String(QT_VERSION_STR) == qtVersion ? qtVersion : QCoreApplication::translate("ownCloudTheme::qtVer", "%1 (Built against Qt %1)").arg(qtVersion, QStringLiteral(QT_VERSION_STR)));
+ const QString qtVersionString = (QLatin1String(QT_VERSION_STR) == qtVersion ? qtVersion : QCoreApplication::translate("ownCloudTheme::qtVer", "%1 (Built against Qt %2)").arg(qtVersion, QStringLiteral(QT_VERSION_STR)));
QString _version = Version::displayString();
QString gitUrl;
if (!Version::gitSha().isEmpty()) {