From 0a974cb59f9b14050e0492615ecb0a40940615c5 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Mon, 11 Feb 2019 10:11:35 +0100 Subject: [PATCH] PerfProfiler: Drop [kernel] from expanded row labels We don't treat the kernel symbols as special anymore and the extra row messes up the other labels. Change-Id: I562b683322172a9b166a89b7c7087b4e69a1646c Reviewed-by: Christian Kandeler --- src/plugins/perfprofiler/perftimelinemodel.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/perfprofiler/perftimelinemodel.cpp b/src/plugins/perfprofiler/perftimelinemodel.cpp index b1469725513..c2a383161b9 100644 --- a/src/plugins/perfprofiler/perftimelinemodel.cpp +++ b/src/plugins/perfprofiler/perftimelinemodel.cpp @@ -82,10 +82,6 @@ QVariantList PerfTimelineModel::labels() const sample.insert(QLatin1String("id"), PerfEvent::LastSpecialTypeId); result << sample; - QVariantMap kernel; - kernel.insert(QLatin1String("description"), tr("[kernel]")); - result << kernel; - const PerfProfilerTraceManager *manager = traceManager(); const bool aggregated = manager->aggregateAddresses(); for (int i = 0; i < m_locationOrder.length(); ++i) {