diff options
author | Ulf Hermann <[email protected]> | 2015-12-04 16:54:58 +0100 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2016-01-06 14:28:24 +0000 |
commit | ffa0c86617c2877b8efc9a9d652f35550c8c288a (patch) | |
tree | 813e3a52ea7ad328db923735b2090fdfef438465 /src/plugins/qmlprofiler/qmlprofilertraceview.cpp | |
parent | e4efb9bb3b5907a5ba2a6cde167c5a5051a84dac (diff) |
QmlProfiler: Allow multiple events views loaded from plugins
Change-Id: Ifaf4e63f4a843a42a1a22f005e87d8c1a4604686
Reviewed-by: Joerg Bornemann <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilertraceview.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilertraceview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilertraceview.cpp b/src/plugins/qmlprofiler/qmlprofilertraceview.cpp index 2d62faab8ee..73a88f106fc 100644 --- a/src/plugins/qmlprofiler/qmlprofilertraceview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertraceview.cpp @@ -242,11 +242,11 @@ void QmlProfilerTraceView::showContextMenu(QPoint position) menu.addActions(QmlProfilerTool::profilerContextMenuActions()); menu.addSeparator(); - QAction *getLocalStatsAction = menu.addAction(tr("Limit Statistics Pane to Current Range")); + QAction *getLocalStatsAction = menu.addAction(tr("Analyze Current Range")); if (!d->m_viewContainer->hasValidSelection()) getLocalStatsAction->setEnabled(false); - QAction *getGlobalStatsAction = menu.addAction(tr("Show Full Range in Statistics Pane")); + QAction *getGlobalStatsAction = menu.addAction(tr("Analyze Full Range")); if (!d->m_viewContainer->isEventsRestrictedToRange()) getGlobalStatsAction->setEnabled(false); |