Drop unused method Workspace::waitForCompositingSetup

Seems to have been used in old compositing kcm, documented as DBus API.
But Workspace doesn't expose a DBus interface anymore and our new DBus
interface does not call this method -> it is dead.
icc-effect-5.14.5
Martin Flöser 2017-09-24 10:28:47 +02:00
parent 4cef894e87
commit 42fd77b836
2 changed files with 0 additions and 19 deletions

View File

@ -803,24 +803,6 @@ void Workspace::reconfigure()
reconfigureTimer.start(200);
}
/**
* This D-Bus call is used by the compositing kcm. Since the reconfigure()
* D-Bus call delays the actual reconfiguring, it is not possible to immediately
* call compositingActive(). Therefore the kcm will instead call this to ensure
* the reconfiguring has already happened.
*/
bool Workspace::waitForCompositingSetup()
{
if (reconfigureTimer.isActive()) {
reconfigureTimer.stop();
slotReconfigure();
}
if (m_compositor) {
return m_compositor->isActive();
}
return false;
}
/**
* Reread settings
*/

View File

@ -301,7 +301,6 @@ public:
SessionInfo* takeSessionInfo(Client*);
// D-Bus interface
bool waitForCompositingSetup();
QString supportInformation() const;
void setCurrentScreen(int new_screen);