From 86dc1c6e2528da34167d11da78e09fca80e34bbd Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Wed, 20 Nov 2024 19:01:03 +0100 Subject: [PATCH] Boot2Qt: Drop QdbDeviceDebugSupport::stop() overload It's no-op. Task-number: QTCREATORBUG-29168 Change-Id: I616311ee732964058d0394b5312369846ddb227d Reviewed-by: hjk --- src/plugins/boot2qt/qdbdevicedebugsupport.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/plugins/boot2qt/qdbdevicedebugsupport.cpp b/src/plugins/boot2qt/qdbdevicedebugsupport.cpp index 45a36158a74..df22296fa7b 100644 --- a/src/plugins/boot2qt/qdbdevicedebugsupport.cpp +++ b/src/plugins/boot2qt/qdbdevicedebugsupport.cpp @@ -119,7 +119,6 @@ public: private: void start() override; - void stop() override; }; QdbDeviceDebugSupport::QdbDeviceDebugSupport(RunControl *runControl) @@ -153,13 +152,6 @@ void QdbDeviceDebugSupport::start() DebuggerRunTool::start(); } -void QdbDeviceDebugSupport::stop() -{ - // Do nothing unusual. The launcher will die as result of (gdb) kill. - DebuggerRunTool::stop(); -} - - // QdbDeviceQmlProfilerSupport class QdbDeviceQmlToolingSupport final : public RunWorker