diff options
author | Ulf Hermann <[email protected]> | 2013-12-17 11:32:28 +0100 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2014-01-02 14:51:09 +0100 |
commit | 5332f35dfb4889df9527578d037c5d942d02e5b9 (patch) | |
tree | e6ee9bafba05dbf0243d98028250841f8983d389 /src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp | |
parent | 4beab5d3433c07f61269596870d9ad1c1729cd2b (diff) |
QmlProfiler: send gotoSourceLocation also from JS profiler
Task-number: QTCREATORBUG-11094
Change-Id: I9e3ef29b6f14d44e15df16ec051b33ea9393968b
Reviewed-by: Kai Koehne <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp index 5374b1c3c7c..bd1be0aa184 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)), |