API review signal changed() -> themeChanged()

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=800067
This commit is contained in:
Anne-Marie Mahfouf 2008-04-23 08:35:35 +00:00
parent 19b4f6c71f
commit dcdb7b8f9a
2 changed files with 4 additions and 4 deletions

View File

@ -153,14 +153,14 @@ void Theme::compositingChanged()
if (d->compositingActive != compositingActive) { if (d->compositingActive != compositingActive) {
d->compositingActive = compositingActive; d->compositingActive = compositingActive;
emit changed(); emit themeChanged();
} }
#endif #endif
} }
void Theme::colorsChanged() void Theme::colorsChanged()
{ {
emit changed(); emit themeChanged();
} }
void Theme::setThemeName(const QString &themeName) void Theme::setThemeName(const QString &themeName)
@ -211,7 +211,7 @@ void Theme::setThemeName(const QString &themeName)
} }
} }
emit changed(); emit themeChanged();
} }
QString Theme::themeName() const QString Theme::themeName() const

View File

@ -140,7 +140,7 @@ class PLASMA_EXPORT Theme : public QObject
* Emitted when the user changes the theme. SVGs should be reloaded at * Emitted when the user changes the theme. SVGs should be reloaded at
* that point * that point
*/ */
void changed(); void themeChanged();
public Q_SLOTS: public Q_SLOTS:
/** /**