From e462c386cf35cd894d6ed9d6a777de65f95e5bd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Mon, 7 Sep 2015 17:40:50 +0200 Subject: [PATCH] Adjust application name to match desktop file The desktop file is called org.kde.kdeconnect.app - this needs to be respected in the application name. This is a requirement to match application windows to applications on Wayland. With a not-matching name the compositor is not able to show a window icon. REVIEW: 124418 --- app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.cpp b/app/main.cpp index b23bf7055..569bdf885 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -26,7 +26,7 @@ int main(int argc, char *argv[]) { QApplication app(argc, argv); - KAboutData aboutData("kdeconnect-kde", i18n("Awesome App"), "1.0", i18n("KDE Connect App"), KAboutLicense::GPL, i18n("(c) 2015, Aleix Pol Gonzalez")); + KAboutData aboutData("kdeconnect.app", i18n("Awesome App"), "1.0", i18n("KDE Connect App"), KAboutLicense::GPL, i18n("(c) 2015, Aleix Pol Gonzalez")); aboutData.addAuthor(i18n("Aleix Pol Gonzalez"), i18n("Maintainer"), "aleixpol@kde.org"); KAboutData::setApplicationData(aboutData);