aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
diff options
context:
space:
mode:
authorUlf Hermann <[email protected]>2014-08-15 12:48:47 +0200
committerUlf Hermann <[email protected]>2014-08-18 10:33:13 +0200
commit8b3b868f4c06376bfd455c9de44a449ba6d4e740 (patch)
tree64452633bbd13b4457a061eb98c21037a41b5b42 /src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
parentb514d4d7b2214b82583348c4e995bbd48fd46522 (diff)
QmlProfiler: Rename JavaScript view to "V8"
The fact that the separate JavaScript view only works with versions of Qt that use the V8 JavaScript engine is frequently confusing users. JavaScript events for newer versions of Qt are integrated into the Events and Timeline views, making the separate JavaScript view obsolete. For those users who already know it and who are still using Qt 5.0 and 5.1 "V8" will be recognizable. For others "V8" won't mean anything and they'll ignore it. Change-Id: Iac0d89db24a3677e47b978a152cfc25c01f9c2b6 Task-number: QTCREATORBUG-12766 Reviewed-by: Leena Miettinen <[email protected]> Reviewed-by: Robert Loehning <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
index ec2a9819d5d..a0bcebc5f8b 100644
--- a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
@@ -114,7 +114,7 @@ void QmlProfilerViewManager::createViews()
d->v8profilerView = new QV8ProfilerEventsWidget(mw, d->profilerTool, this,
d->profilerModelManager);
- d->v8profilerView->setWindowTitle(tr("JavaScript"));
+ d->v8profilerView->setWindowTitle(tr("V8"));
connect(d->v8profilerView, SIGNAL(gotoSourceLocation(QString,int,int)), this,
SIGNAL(gotoSourceLocation(QString,int,int)));
connect(d->traceView, SIGNAL(gotoSourceLocation(QString,int,int)),