void ConsoleRequestHandler::stopAll()
{
	_stopped();
}
Esempio n. 2
0
void EventQueue::waitForStopped() {
	QEventLoop wait;
	wait.connect(this, SIGNAL(_stopped()), SLOT(quit()));
	emit this->_stop();
	wait.exec();
}