From 3642da480ec8e7cd730ec929bc6345a4cc13eb41 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20T=C5=AFma?= Date: Sat, 28 Oct 2023 12:17:34 +0200 Subject: [PATCH] Give the icon themes better names --- gpxsee.pro | 8 ++++---- theme-default.qrc => theme-color.qrc | 0 theme-unix.qrc => theme-grayscale.qrc | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename theme-default.qrc => theme-color.qrc (100%) rename theme-unix.qrc => theme-grayscale.qrc (100%) diff --git a/gpxsee.pro b/gpxsee.pro index 5b3f31ed..7af10f6a 100644 --- a/gpxsee.pro +++ b/gpxsee.pro @@ -488,7 +488,7 @@ TRANSLATIONS = lang/gpxsee_en.ts \ lang/gpxsee_ko.ts macx { - RESOURCES += theme-unix.qrc + RESOURCES += theme-grayscale.qrc ICON = icons/app/gpxsee.icns QMAKE_INFO_PLIST = pkg/mac/Info.plist @@ -508,7 +508,7 @@ macx { } win32 { - RESOURCES += theme-default.qrc + RESOURCES += theme-color.qrc QMAKE_TARGET_DESCRIPTION = GPXSee QMAKE_TARGET_COPYRIGHT = Copyright (c) 2023 Martin Tuma @@ -552,7 +552,7 @@ win32 { } unix:!macx:!android { - RESOURCES += theme-unix.qrc + RESOURCES += theme-grayscale.qrc isEmpty(PREFIX):PREFIX = /usr/local maps.files = $$files(data/maps/*) @@ -576,7 +576,7 @@ unix:!macx:!android { } android { - RESOURCES += theme-default.qrc + RESOURCES += theme-color.qrc HEADERS += src/GUI/navigationwidget.h SOURCES += src/GUI/navigationwidget.cpp diff --git a/theme-default.qrc b/theme-color.qrc similarity index 100% rename from theme-default.qrc rename to theme-color.qrc diff --git a/theme-unix.qrc b/theme-grayscale.qrc similarity index 100% rename from theme-unix.qrc rename to theme-grayscale.qrc -- 2.11.4.GIT