From 71c612d07d9566edbb1efad67f6676c4643706c9 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 19 Jul 2017 17:34:31 +0200 Subject: [PATCH] QmlProfiler: Add display name to LocalQmlProfilerSupport For debugging purposes. Change-Id: I6e8006983e30c928ad4cf69f15e627f23741e99d Reviewed-by: Christian Kandeler --- src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp b/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp index 39770f18152..f009a994296 100644 --- a/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp @@ -304,6 +304,8 @@ LocalQmlProfilerSupport::LocalQmlProfilerSupport(RunControl *runControl) LocalQmlProfilerSupport::LocalQmlProfilerSupport(RunControl *runControl, const QUrl &serverUrl) : RunWorker(runControl) { + setDisplayName("LocalQmlProfilerSupport"); + m_profiler = new QmlProfilerRunner(runControl); m_profiler->setServerUrl(serverUrl); m_profiler->addDependency(this);