From ebab4eb406b8c513407a0476c6a993c7a2bb89e0 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Mon, 6 Jun 2016 19:54:17 +0200 Subject: [PATCH] QmlProfiler: Remove references to binding types They don't exist anymore. Change-Id: Id8650dbba15e90f7cd4c485471792bfc8f40674f Reviewed-by: Christian Kandeler --- .../qmlprofiler/qmlprofilerstatisticsview.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp b/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp index ceb85acab64..671f3103b71 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp @@ -576,21 +576,8 @@ void QmlProfilerStatisticsMainView::parseModel() if (d->m_fieldShown[Type]) { QString typeString = QmlProfilerStatisticsMainView::nameForType(event.rangeType); - QString toolTipText; - if (event.rangeType == Binding) { - if (event.detailType == (int)OptimizedBinding) { - typeString = typeString + QLatin1Char(' ') + tr("(Opt)"); - toolTipText = tr("Binding is evaluated by the optimized engine."); - } else if (event.detailType == (int)V8Binding) { - toolTipText = tr("Binding not optimized (might have side effects or assignments,\n" - "references to elements in other files, loops, and so on.)"); - - } - } newRow << new StatisticsViewItem(typeString); newRow.last()->setData(QVariant(typeString)); - if (!toolTipText.isEmpty()) - newRow.last()->setToolTip(toolTipText); } if (d->m_fieldShown[TimeInPercent]) {