fix a minor bug with the 3rd party Qt icon loader. <http://code.google.com/p/qticonloader/issues/detail?id=5>
This commit is contained in:
parent
9fe388cf70
commit
625c395dcf
|
@ -260,7 +260,7 @@ 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")).toStringList();
|
||||
}
|
||||
|
||||
if (kdeVersion() >= 3) {
|
||||
|
|
Loading…
Reference in New Issue