- Add the resetClients() signal again for backwards compatility, and mark it

as obsolete.

svn path=/trunk/kdebase/kwin/; revision=141463
This commit is contained in:
Karol Szwed 2002-03-07 03:19:57 +00:00
parent e517337e8d
commit bf079b4498
2 changed files with 11 additions and 0 deletions

View file

@ -270,6 +270,8 @@ void Options::reload()
globalConfig.setGroup("KDE");
d->fade_tooltips = globalConfig.readBoolEntry("EffectFadeTooltip", false);
d->animate_tooltips = globalConfig.readBoolEntry("EffectAnimateTooltip", false);
emit resetClients();
}

View file

@ -320,6 +320,15 @@ public:
*/
int electricBorderDelay();
signals:
/**
* Emitted when KWin is asked to reconfigure itself.
*
* Please note that this signal is obsolete, and provided only for
* backwards compatibility. It is advisable to use the reset() cdecl.
* in the style plugin interface instead of connecting to this signal.
*/
void resetClients();
public slots:
void reload();