diff options
author | Ulf Hermann <[email protected]> | 2015-12-04 13:30:54 +0100 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2016-01-06 14:25:08 +0000 |
commit | 4223d76c484831bb389209ab76e905ee7cfaf2a1 (patch) | |
tree | 155088bbf31c7aa3241f569ad49b3f38facb0eb3 /src/plugins/qmlprofiler/qmlprofilertraceview.cpp | |
parent | df4e46ff02a6a361770d86eec395338abaf74213 (diff) |
QmlProfiler: Rename "events" to "statistics" view
Change-Id: Id552e0ead056214a7d72dd618c54897b55cd5e38
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 8a2a466d786..8ee5f35d67f 100644 --- a/src/plugins/qmlprofiler/qmlprofilertraceview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertraceview.cpp @@ -248,11 +248,11 @@ void QmlProfilerTraceView::showContextMenu(QPoint position) menu.addSeparator(); - QAction *getLocalStatsAction = menu.addAction(tr("Limit Events Pane to Current Range")); + QAction *getLocalStatsAction = menu.addAction(tr("Limit Statistics Pane to Current Range")); if (!d->m_viewContainer->hasValidSelection()) getLocalStatsAction->setEnabled(false); - QAction *getGlobalStatsAction = menu.addAction(tr("Show Full Range in Events Pane")); + QAction *getGlobalStatsAction = menu.addAction(tr("Show Full Range in Statistics Pane")); if (!d->m_viewContainer->isEventsRestrictedToRange()) getGlobalStatsAction->setEnabled(false); |