From dcdb7b8f9a33d05010eb8dcc1954a0835d0f30a0 Mon Sep 17 00:00:00 2001 From: Anne-Marie Mahfouf Date: Wed, 23 Apr 2008 08:35:35 +0000 Subject: [PATCH] API review signal changed() -> themeChanged() svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=800067 --- theme.cpp | 6 +++--- theme.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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: /**