From fca6d62358a1a8dff381e5b5daa7d94e3149b506 Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Fri, 18 Sep 2009 11:07:00 +0200 Subject: [PATCH] Backported fix for inherited icon themes for the qticonloader --- src/iconloader/qticonloader.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/iconloader/qticonloader.cpp b/src/iconloader/qticonloader.cpp index 6f7a60c..2e60783 100644 --- a/src/iconloader/qticonloader.cpp +++ b/src/iconloader/qticonloader.cpp @@ -260,7 +260,10 @@ QIconTheme QtIconLoaderImplementation::parseIndexFile(const QString &themeName) } // Parent themes provide fallbacks for missing icons - parents = indexReader.value(QLatin1String("Icon Theme/Inherits")).toString().split(QLatin1Char(',')); + // parents = indexReader.value(QLatin1String("Icon Theme/Inherits")).toString().split(QLatin1Char(',')); + parents = indexReader.value(QLatin1String("Icon Theme/Inherits")).toStringList(); + + } if (kdeVersion() >= 3) { -- 2.39.5