diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c112c31f..1ad968b6d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,7 @@ set_package_properties(KQuickImageEditor PROPERTIES install(FILES org.kde.neochat.desktop DESTINATION ${KDE_INSTALL_APPDIR}) install(FILES org.kde.neochat.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) -install(FILES neochat.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps) +install(FILES org.kde.neochat.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps) install(FILES neochat.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR}) # add_definitions(-DQT_NO_KEYWORDS) Need to fix libQuotient first diff --git a/neochat.svg b/org.kde.neochat.svg similarity index 100% rename from neochat.svg rename to org.kde.neochat.svg diff --git a/src/main.cpp b/src/main.cpp index 7c720c9e9..39bb467bf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -69,6 +69,7 @@ int main(int argc, char *argv[]) about.setOrganizationDomain("kde.org"); KAboutData::setApplicationData(about); + QApplication::setWindowIcon(QIcon::fromTheme(QStringLiteral("org.kde.neochat"))); #ifndef Q_OS_ANDROID KDBusService service(KDBusService::Unique);