aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-12-13 10:30:30 +0100
committerhjk <hjk@qt.io>2019-12-17 08:23:06 +0000
commit466764146c10216ea2998d2dda35e26d0deaaa73 (patch)
tree6f060f6c9e352ccaa2a8e8c91375b296f9362532 /src/plugins/remotelinux
parent13b64f3735a99158e1d9e8ec6238a1203fe4a113 (diff)
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>
Diffstat (limited to 'src/plugins/remotelinux')
-rw-r--r--src/plugins/remotelinux/remotelinuxdebugsupport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp
index a9a3eca3a1..b980699641 100644
--- a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp
+++ b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp
@@ -41,7 +41,7 @@ LinuxDeviceDebugSupport::LinuxDeviceDebugSupport(RunControl *runControl)
setUsePortsGatherer(isCppDebugging(), isQmlDebugging());
addQmlServerInferiorCommandLineArgumentIfNeeded();
- auto gdbServer = new GdbServerRunner(runControl, portsGatherer());
+ auto gdbServer = new DebugServerRunner(runControl, portsGatherer());
gdbServer->setEssential(true);
addStartDependency(gdbServer);