From 5332f35dfb4889df9527578d037c5d942d02e5b9 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Tue, 17 Dec 2013 11:32:28 +0100 Subject: [PATCH] QmlProfiler: send gotoSourceLocation also from JS profiler Task-number: QTCREATORBUG-11094 Change-Id: I9e3ef29b6f14d44e15df16ec051b33ea9393968b Reviewed-by: Kai Koehne --- src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp index 5374b1c3c7..bd1be0aa18 100644 --- a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp @@ -112,6 +112,8 @@ void QmlProfilerViewManager::createViews() d->v8profilerView = new QV8ProfilerEventsWidget(mw, d->profilerTool, this, d->profilerModelManager); + connect(d->v8profilerView, SIGNAL(gotoSourceLocation(QString,int,int)), this, + SIGNAL(gotoSourceLocation(QString,int,int))); connect(d->traceView, SIGNAL(gotoSourceLocation(QString,int,int)), d->v8profilerView, SLOT(selectBySourceLocation(QString,int,int))); connect(d->v8profilerView, SIGNAL(gotoSourceLocation(QString,int,int)), -- GitLab