forked from qt-creator/qt-creator
Debugger: Rename some GdbServer* to DebugServer*
This is mimicking a bit what has been done on the baremetal side, and is formally more correct when the gdbserver is not a real gdbserver, but e.g. a probe speaking the gdb remote protocol. Change-Id: I1b42624b94071b34c009bd0650095792a5b2fcb7 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -66,7 +66,7 @@ public:
|
||||
connect(&m_launcher, &ApplicationLauncher::remoteStderr,
|
||||
this, [this](const QString &out) { appendMessage(out, StdErrFormat); });
|
||||
|
||||
m_portsGatherer = new GdbServerPortsGatherer(runControl);
|
||||
m_portsGatherer = new DebugServerPortsGatherer(runControl);
|
||||
m_portsGatherer->setUseGdbServer(useGdbServer || usePerf);
|
||||
m_portsGatherer->setUseQmlServer(useQmlServer);
|
||||
addStartDependency(m_portsGatherer);
|
||||
@@ -128,7 +128,7 @@ public:
|
||||
void stop() override { m_launcher.stop(); }
|
||||
|
||||
private:
|
||||
Debugger::GdbServerPortsGatherer *m_portsGatherer = nullptr;
|
||||
Debugger::DebugServerPortsGatherer *m_portsGatherer = nullptr;
|
||||
bool m_usePerf;
|
||||
bool m_useGdbServer;
|
||||
bool m_useQmlServer;
|
||||
|
||||
Reference in New Issue
Block a user