API review signal changed() -> themeChanged()
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=800067
This commit is contained in:
parent
19b4f6c71f
commit
dcdb7b8f9a
@ -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
|
||||||
|
2
theme.h
2
theme.h
@ -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:
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user