diff options
author | hjk <[email protected]> | 2018-08-21 08:28:27 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2018-08-21 08:02:22 +0000 |
commit | 263cf4c6088d579a2cda05b3d5b795840e3e79fc (patch) | |
tree | f5962db81cf53faa05c0bfec67f3b06b1df2fb4c /src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp | |
parent | 98f3b961c6f0f50612cf94ccac4476a93ded3135 (diff) |
ProjectExplorer: Remove RunWorker::setDisplayName
It has been an obsolete alias for setId for a while and downstream
uses have been adapted.
Change-Id: I467370aa67054599c7771e8275d28e62ddc461fa
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp b/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp index f4d9d7cfa73..4565e3e8e29 100644 --- a/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerruncontrol.cpp @@ -76,7 +76,7 @@ QmlProfilerRunner::QmlProfilerRunner(RunControl *runControl) : RunWorker(runControl) , d(new QmlProfilerRunnerPrivate) { - setDisplayName("QmlProfilerRunner"); + setId("QmlProfilerRunner"); runControl->setIcon(ProjectExplorer::Icons::ANALYZER_START_SMALL_TOOLBAR); setSupportsReRunning(false); } @@ -229,7 +229,7 @@ LocalQmlProfilerSupport::LocalQmlProfilerSupport(QmlProfilerTool *profilerTool, RunControl *runControl, const QUrl &serverUrl) : SimpleTargetRunner(runControl) { - setDisplayName("LocalQmlProfilerSupport"); + setId("LocalQmlProfilerSupport"); QmlProfilerRunner *profiler = new QmlProfilerRunner(runControl); profiler->setServerUrl(serverUrl); |