aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);