void KProtocolManager::reparseConfiguration() { kpmpksd.destructObject(); // Force the slave config to re-read its config... KIO::SlaveConfig::self()->reset(); }
void KDialogQueue::slotShowQueuedDialog() { if (d->busy) return; QDialog *dialog; do { if(d->queue.isEmpty()) return; dialog = d->queue.first(); d->queue.pop_front(); } while(!dialog); d->busy = true; dialog->exec(); d->busy = false; delete dialog; if (!d->queue.isEmpty()) QTimer::singleShot(20, this, SLOT(slotShowQueuedDialog())); else ksdkdq.destructObject(); // Suicide. }