QmlProfiler: Fix slot signature

This commit is contained in:
Kai Koehne
2011-04-15 09:01:34 +02:00
parent 881193b19e
commit 18bfabe0ee

View File

@@ -139,7 +139,7 @@ void QmlProfilerEngine::finishProcess()
// user stop? // user stop?
if (d->m_running) { if (d->m_running) {
d->m_running = false; d->m_running = false;
disconnect(&d->m_launcher, SIGNAL(processExited(int)), this, SLOT(spontaneousStop())); disconnect(&d->m_launcher, SIGNAL(processExited(int)), this, SLOT(spontaneousStop(int)));
if (d->m_launcher.isRunning()) { if (d->m_launcher.isRunning()) {
d->m_launcher.stop(); d->m_launcher.stop();
} }