Git commit 78e4e57af3a5476dd949797c559a3d25d8ce50a1 by Aur=C3=A9lien G=C3= =A2teau, on behalf of Ivan =C4=8Cuki=C4=87. Committed on 09/04/2015 at 07:56. Pushed by gateau into branch 'master'. Syncing the application name with the name of the desktop file Gwenview application name stayed 'gwenview' while the .desktop file switche= d to the org.kde.*something* naming scheme. While currently not that important - in the recent future, syncing these tw= o will be needed for the application to properly work with the things like: - recent/favourite/high scored documents for gwenview in the task-bar - remembering the prefered application for specific files - probably something else that I can not remember atm :) REVIEW: 123245 M +2 -2 app/main.cpp http://commits.kde.org/gwenview/78e4e57af3a5476dd949797c559a3d25d8ce50a1 diff --git a/app/main.cpp b/app/main.cpp index 07de427..806fcab 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -121,8 +121,8 @@ int main(int argc, char *argv[]) KLocalizedString::setApplicationDomain("gwenview"); QScopedPointer aboutData( Gwenview::createAboutData( - QStringLiteral("gwenview"), /* component name */ - i18n("Gwenview") /* display name */ + QStringLiteral("org.kde.gwenview"), /* component name */ + i18n("Gwenview") /* display name */ )); aboutData->setShortDescription(i18n("An Image Viewer")); =20