From 9b97f126692ee3299877f37543c33fc04fcc9bbd Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 1 Apr 2020 11:23:45 +0200 Subject: [PATCH] RemoteLinux: Rename some gdbServer variable to debugServer It could be lldb-server at some time, too. Change-Id: I5a8210e05189902d1cef9b41e14df0b585bcb86b Reviewed-by: Christian Stenger --- src/plugins/remotelinux/remotelinuxdebugsupport.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp index b9806996416..62c10255bc1 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);