diff --git a/declarativeimports/core/theme.cpp b/declarativeimports/core/theme.cpp index 64e41ed00..fd9e15895 100644 --- a/declarativeimports/core/theme.cpp +++ b/declarativeimports/core/theme.cpp @@ -56,11 +56,6 @@ bool ThemeProxy::useGlobalSettings() const return Plasma::Theme::defaultTheme()->useGlobalSettings(); } -QString ThemeProxy::styleSheet() const -{ - return Plasma::Theme::defaultTheme()->styleSheet(); -} - QString ThemeProxy::wallpaperPath() const { return Plasma::Theme::defaultTheme()->wallpaperPath(); diff --git a/declarativeimports/core/theme_p.h b/declarativeimports/core/theme_p.h index 4ff53f918..008264991 100644 --- a/declarativeimports/core/theme_p.h +++ b/declarativeimports/core/theme_p.h @@ -34,7 +34,6 @@ class ThemeProxy : public QObject Q_PROPERTY(bool windowTranslucentEnabled READ windowTranslucencyEnabled NOTIFY themeChanged) Q_PROPERTY(KUrl homepage READ homepage NOTIFY themeChanged) Q_PROPERTY(bool useGlobalSettings READ useGlobalSettings NOTIFY themeChanged) - Q_PROPERTY(QString styleSheet READ styleSheet NOTIFY themeChanged) Q_PROPERTY(QString wallpaperPath READ wallpaperPath NOTIFY themeChanged) // colors @@ -63,7 +62,6 @@ public: bool windowTranslucencyEnabled() const; KUrl homepage() const; bool useGlobalSettings() const; - QString styleSheet() const; QString wallpaperPath() const; QColor textColor() const;