summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/themeinterface.cpp5
-rw-r--r--mobile-widgets/themeinterface.h3
2 files changed, 2 insertions, 6 deletions
diff --git a/mobile-widgets/themeinterface.cpp b/mobile-widgets/themeinterface.cpp
index 68f9564db..9e522b936 100644
--- a/mobile-widgets/themeinterface.cpp
+++ b/mobile-widgets/themeinterface.cpp
@@ -50,11 +50,8 @@ ThemeInterface *ThemeInterface::instance()
return self;
}
-void ThemeInterface::setup(QQmlContext *ct)
+ThemeInterface::ThemeInterface()
{
- // Register interface class
- ct->setContextProperty("subsurfaceTheme", this);
-
// get current theme
m_currentTheme = qPrefDisplay::theme();
update_theme();
diff --git a/mobile-widgets/themeinterface.h b/mobile-widgets/themeinterface.h
index e364d74b5..e4e61144f 100644
--- a/mobile-widgets/themeinterface.h
+++ b/mobile-widgets/themeinterface.h
@@ -36,7 +36,6 @@ class ThemeInterface : public QObject {
public:
static ThemeInterface *instance();
- void setup(QQmlContext *ct);
double currentScale();
public slots:
@@ -66,7 +65,7 @@ signals:
void currentThemeChanged();
private:
- ThemeInterface() {}
+ ThemeInterface();
void update_theme();
QColor m_backgroundColor;