diff --git a/src/gui/themefactory.cpp b/src/gui/themefactory.cpp index 324facff0..7fbefb761 100644 --- a/src/gui/themefactory.cpp +++ b/src/gui/themefactory.cpp @@ -20,7 +20,13 @@ void ThemeFactory::setupSearchPaths() { // TODO: Load currently selected "real" icon theme name instead of // Qt default "", which stands for currently active system icon theme name. QString ThemeFactory::getSystemIconTheme() { +#if defined(Q_OS_LINUX) 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() {