aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-04-01 11:23:45 +0200
committerhjk <hjk@qt.io>2020-04-02 06:31:44 +0000
commit9b97f126692ee3299877f37543c33fc04fcc9bbd (patch)
treea5f5292c07a6c83898eb3f63006366c30bac95f7
parentd746b4ab2d942a62b1be083a56907c85f4ab169e (diff)
RemoteLinux: Rename some gdbServer variable to debugServer
It could be lldb-server at some time, too. Change-Id: I5a8210e05189902d1cef9b41e14df0b585bcb86b Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--src/plugins/remotelinux/remotelinuxdebugsupport.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp
index b980699641..62c10255bc 100644
--- a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp
+++ b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp
@@ -41,10 +41,10 @@ LinuxDeviceDebugSupport::LinuxDeviceDebugSupport(RunControl *runControl)
setUsePortsGatherer(isCppDebugging(), isQmlDebugging());
addQmlServerInferiorCommandLineArgumentIfNeeded();
- auto gdbServer = new DebugServerRunner(runControl, portsGatherer());
- gdbServer->setEssential(true);
+ auto debugServer = new DebugServerRunner(runControl, portsGatherer());
+ debugServer->setEssential(true);
- addStartDependency(gdbServer);
+ addStartDependency(debugServer);
setStartMode(AttachToRemoteServer);
setCloseMode(KillAndExitMonitorAtClose);