From 1315d9b9eba512a9605b1e005040e6a35789c08d Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Wed, 1 Jul 2020 22:48:43 +0200 Subject: [PATCH] [smsapp] Switch displayName and shortDescription The former is used as the window title and as title in the about page. I think 'KDE Connect SMS' is more appropriate there. --- smsapp/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smsapp/main.cpp b/smsapp/main.cpp index 955a4a731..98caf8211 100644 --- a/smsapp/main.cpp +++ b/smsapp/main.cpp @@ -40,9 +40,9 @@ int main(int argc, char *argv[]) QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); QApplication app(argc, argv); KAboutData aboutData(QStringLiteral("kdeconnect.sms"), - i18n("SMS Instant Messaging"), - QStringLiteral(KDECONNECT_VERSION_STRING), i18n("KDE Connect SMS"), + QStringLiteral(KDECONNECT_VERSION_STRING), + i18n("SMS Instant Messaging"), KAboutLicense::GPL_V3, i18n("(C) 2018-2019, KDE Connect Team")); aboutData.addAuthor(i18n("Simon Redman"), {}, QStringLiteral("simon@ergotech.com"));