forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -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());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user