summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-04-15 09:01:34 +0200
committerKai Koehne <kai.koehne@nokia.com>2011-04-15 09:01:34 +0200
commit18bfabe0eeaa3304f44a29b1189357421c5b665c (patch)
tree2d25e767553a68e1c2845bbecee73194cb006701 /src/plugins
parent881193b19e45370fa8faa9db9daf81e03b3d958a (diff)
downloadqt-creator-18bfabe0eeaa3304f44a29b1189357421c5b665c.tar.gz
QmlProfiler: Fix slot signature
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilerengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerengine.cpp b/src/plugins/qmlprofiler/qmlprofilerengine.cpp
index 31a6876cad..06d1a54747 100644
--- a/src/plugins/qmlprofiler/qmlprofilerengine.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilerengine.cpp
@@ -139,7 +139,7 @@ void QmlProfilerEngine::finishProcess()
// user stop?
if (d->m_running) {
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()) {
d->m_launcher.stop();
}