Fix failure to start kompmgr from control panel

pull/2/head
Timothy Pearson 11 years ago
parent ed123019ba
commit 82b90cbe47

@ -1131,6 +1131,12 @@ void Workspace::slotReconfigure()
else
{
stopKompmgr();
if (!kompmgr)
{
kompmgr = new TDEProcess;
connect(kompmgr, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)), TQT_SLOT(handleKompmgrOutput(TDEProcess*, char*, int)));
*kompmgr << "kompmgr";
}
TQTimer::singleShot( 200, this, TQT_SLOT(startKompmgr()) ); // wait some time to ensure system's ready for restart
}
}

Loading…
Cancel
Save