diff --git a/theme.cpp b/theme.cpp index c6cbee1a9..04ba69ae1 100644 --- a/theme.cpp +++ b/theme.cpp @@ -153,14 +153,14 @@ void Theme::compositingChanged() if (d->compositingActive != compositingActive) { d->compositingActive = compositingActive; - emit changed(); + emit themeChanged(); } #endif } void Theme::colorsChanged() { - emit changed(); + emit themeChanged(); } void Theme::setThemeName(const QString &themeName) @@ -211,7 +211,7 @@ void Theme::setThemeName(const QString &themeName) } } - emit changed(); + emit themeChanged(); } QString Theme::themeName() const diff --git a/theme.h b/theme.h index e9fa88c71..e944e8916 100644 --- a/theme.h +++ b/theme.h @@ -140,7 +140,7 @@ class PLASMA_EXPORT Theme : public QObject * Emitted when the user changes the theme. SVGs should be reloaded at * that point */ - void changed(); + void themeChanged(); public Q_SLOTS: /**