From ba1f5efca53f51feeb9e4aaa40714e86e0212044 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Tue, 20 Dec 2016 16:47:34 +0100 Subject: [PATCH] QmlProfiler: Change statistics view labels They should bei in line with how we call the event types in other places. Change-Id: Id6a5a42bdf745d6827deeca713a0e78c5fae4783 Reviewed-by: Leena Miettinen Reviewed-by: Christian Kandeler --- src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp b/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp index c6f78deef13..df6985b1814 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp @@ -645,11 +645,11 @@ QStandardItem *QmlProfilerStatisticsMainView::itemFromIndex(const QModelIndex &i QString QmlProfilerStatisticsMainView::nameForType(RangeType typeNumber) { switch (typeNumber) { - case Painting: return QmlProfilerStatisticsMainView::tr("Paint"); - case Compiling: return QmlProfilerStatisticsMainView::tr("Compile"); - case Creating: return QmlProfilerStatisticsMainView::tr("Create"); + case Painting: return QmlProfilerStatisticsMainView::tr("Painting"); + case Compiling: return QmlProfilerStatisticsMainView::tr("Compiling"); + case Creating: return QmlProfilerStatisticsMainView::tr("Creating"); case Binding: return QmlProfilerStatisticsMainView::tr("Binding"); - case HandlingSignal: return QmlProfilerStatisticsMainView::tr("Signal"); + case HandlingSignal: return QmlProfilerStatisticsMainView::tr("Handling Signal"); case Javascript: return QmlProfilerStatisticsMainView::tr("JavaScript"); default: return QString(); }