Oxygen icon theme now fall-back for windows

This commit is contained in:
Martin Rotter 2013-06-14 11:03:36 +02:00
parent d83d88fc98
commit c507c8a31c

View File

@ -20,7 +20,13 @@ void ThemeFactory::setupSearchPaths() {
// TODO: Load currently selected "real" icon theme name instead of // TODO: Load currently selected "real" icon theme name instead of
// Qt default "", which stands for currently active system icon theme name. // Qt default "", which stands for currently active system icon theme name.
QString ThemeFactory::getSystemIconTheme() { QString ThemeFactory::getSystemIconTheme() {
#if defined(Q_OS_LINUX)
return QString(); return QString();
#else
// It is expected that oxygen is provided as fall-back theme for
// windows edition of RSS Guard.
return "oxygen";
#endif
} }
QString ThemeFactory::getCurrentIconTheme() { QString ThemeFactory::getCurrentIconTheme() {