some cleanups, reconfigure() dcop call
svn path=/trunk/kdebase/kwin/; revision=54046
This commit is contained in:
parent
6655d0207d
commit
ead1f75144
4 changed files with 12 additions and 2 deletions
|
@ -8,9 +8,10 @@ class KWinInterface : virtual public DCOPObject
|
|||
K_DCOP
|
||||
|
||||
k_dcop:
|
||||
|
||||
|
||||
virtual ASYNC cascadeDesktop() = 0;
|
||||
virtual ASYNC unclutterDesktop() = 0;
|
||||
virtual ASYNC reconfigure() = 0;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -141,7 +141,6 @@ static void create_pixmaps()
|
|||
|
||||
void StdClient::slotReset()
|
||||
{
|
||||
warning("In slotReset");
|
||||
delete close_pix;
|
||||
delete maximize_pix;
|
||||
delete minimize_pix;
|
||||
|
|
|
@ -1452,6 +1452,15 @@ void Workspace::unclutterDesktop()
|
|||
}
|
||||
|
||||
|
||||
/*!
|
||||
Reread settings
|
||||
*/
|
||||
void Workspace::reconfigure()
|
||||
{
|
||||
KGlobal::config()->reparseConfiguration();
|
||||
options->reload();
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
Lowers the client \a c taking layers, transient windows and window
|
||||
|
|
|
@ -171,6 +171,7 @@ public:
|
|||
// dcop interface
|
||||
void cascadeDesktop();
|
||||
void unclutterDesktop();
|
||||
void reconfigure();
|
||||
|
||||
|
||||
public slots:
|
||||
|
|
Loading…
Reference in a new issue