From fe44db96312020cd047f80b895ba8e1d59d43412 Mon Sep 17 00:00:00 2001 From: Karol Szwed Date: Fri, 23 Mar 2001 09:28:40 +0000 Subject: [PATCH] Added a dcop signal "dcopResetAllClients()" to allow other apps to be notified when the user has changed the current kwin client decoration via the titlebar. svn path=/trunk/kdebase/kwin/; revision=88294 --- workspace.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/workspace.cpp b/workspace.cpp index dc37cc0374..897ae01096 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -2991,6 +2991,10 @@ void Workspace::slotResetAllClients() block_focus = FALSE; if ( active ) requestFocus( active ); + + // Add a dcop signal to allow other apps to know when the kwin client + // has been changed by via the titlebar decoration selection. + kapp->dcopClient()->emitDCOPSignal("dcopResetAllClients()", QByteArray() ); }