diff options
author | hjk <hjk@qt.io> | 2018-08-21 08:28:27 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2018-08-21 08:02:22 +0000 |
commit | 263cf4c6088d579a2cda05b3d5b795840e3e79fc (patch) | |
tree | f5962db81cf53faa05c0bfec67f3b06b1df2fb4c /src/plugins/qnx | |
parent | 98f3b961c6f0f50612cf94ccac4476a93ded3135 (diff) | |
download | qt-creator-263cf4c6088d579a2cda05b3d5b795840e3e79fc.tar.gz |
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 <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/qnx')
-rw-r--r-- | src/plugins/qnx/qnxanalyzesupport.cpp | 2 | ||||
-rw-r--r-- | src/plugins/qnx/qnxdebugsupport.cpp | 8 | ||||
-rw-r--r-- | src/plugins/qnx/slog2inforunner.cpp | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/qnx/qnxanalyzesupport.cpp b/src/plugins/qnx/qnxanalyzesupport.cpp index 85a5cf8cc0..3f732f8805 100644 --- a/src/plugins/qnx/qnxanalyzesupport.cpp +++ b/src/plugins/qnx/qnxanalyzesupport.cpp @@ -50,7 +50,7 @@ namespace Internal { QnxQmlProfilerSupport::QnxQmlProfilerSupport(RunControl *runControl) : SimpleTargetRunner(runControl) { - setDisplayName("QnxQmlProfilerSupport"); + setId("QnxQmlProfilerSupport"); appendMessage(tr("Preparing remote side..."), Utils::LogMessageFormat); m_portsGatherer = new PortsGatherer(runControl); diff --git a/src/plugins/qnx/qnxdebugsupport.cpp b/src/plugins/qnx/qnxdebugsupport.cpp index bb7b8097d8..30f569b826 100644 --- a/src/plugins/qnx/qnxdebugsupport.cpp +++ b/src/plugins/qnx/qnxdebugsupport.cpp @@ -99,7 +99,7 @@ public: QnxDebuggeeRunner(RunControl *runControl, GdbServerPortsGatherer *portsGatherer) : SimpleTargetRunner(runControl), m_portsGatherer(portsGatherer) { - setDisplayName("QnxDebuggeeRunner"); + setId("QnxDebuggeeRunner"); } private: @@ -133,7 +133,7 @@ private: QnxDebugSupport::QnxDebugSupport(RunControl *runControl) : DebuggerRunTool(runControl) { - setDisplayName("QnxDebugSupport"); + setId("QnxDebugSupport"); appendMessage(tr("Preparing remote side..."), LogMessageFormat); setUsePortsGatherer(isCppDebugging(), isQmlDebugging()); @@ -202,7 +202,7 @@ public: PDebugRunner(RunControl *runControl, GdbServerPortsGatherer *portsGatherer) : SimpleTargetRunner(runControl), m_portsGatherer(portsGatherer) { - setDisplayName("PDebugRunner"); + setId("PDebugRunner"); addStartDependency(m_portsGatherer); } @@ -225,7 +225,7 @@ private: QnxAttachDebugSupport::QnxAttachDebugSupport(RunControl *runControl) : DebuggerRunTool(runControl) { - setDisplayName("QnxAttachDebugSupport"); + setId("QnxAttachDebugSupport"); setUsePortsGatherer(isCppDebugging(), isQmlDebugging()); diff --git a/src/plugins/qnx/slog2inforunner.cpp b/src/plugins/qnx/slog2inforunner.cpp index 0d64940163..e7648899a4 100644 --- a/src/plugins/qnx/slog2inforunner.cpp +++ b/src/plugins/qnx/slog2inforunner.cpp @@ -44,7 +44,7 @@ namespace Internal { Slog2InfoRunner::Slog2InfoRunner(RunControl *runControl) : RunWorker(runControl) { - setDisplayName("Slog2InfoRunner"); + setId("Slog2InfoRunner"); m_applicationId = runControl->runConfiguration()->extraAspect<ExecutableAspect>()->executable().fileName(); // See QTCREATORBUG-10712 for details. |