summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/themeinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/themeinterface.h')
-rw-r--r--mobile-widgets/themeinterface.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/mobile-widgets/themeinterface.h b/mobile-widgets/themeinterface.h
index 1c68699fc..35bb251a8 100644
--- a/mobile-widgets/themeinterface.h
+++ b/mobile-widgets/themeinterface.h
@@ -33,18 +33,14 @@ class themeInterface : public QObject {
// Support
Q_PROPERTY(QString currentTheme MEMBER m_currentTheme WRITE set_currentTheme NOTIFY currentThemeChanged)
- Q_PROPERTY(QString iconStyle MEMBER m_iconStyle NOTIFY iconStyleChanged)
public:
static themeInterface *instance();
-
static void setup(QQmlContext *ct);
-
static double currentScale();
public slots:
static void set_currentTheme(const QString &theme);
-
static void set_currentScale(double);
signals:
@@ -68,7 +64,6 @@ signals:
void currentScaleChanged(double);
void currentThemeChanged(const QString &);
- void iconStyleChanged(const QString &);
private:
themeInterface() {}
@@ -94,6 +89,5 @@ private:
static double m_titlePointSize;
static QString m_currentTheme;
- static QString m_iconStyle;
};
#endif