From 431c501c2c1c9287154f1507323e8c120c53b903 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Wed, 20 Nov 2024 15:20:45 +0100 Subject: [PATCH] PE: Promote protected methods to public in SimpleTargetRunner And in DebuggerRunTool. Task-number: QTCREATORBUG-29168 Change-Id: Iaf46cc940dec80db07edb7f159ed477c3e1ce009 Reviewed-by: hjk --- src/plugins/debugger/debuggerruncontrol.h | 1 - src/plugins/projectexplorer/runcontrol.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/plugins/debugger/debuggerruncontrol.h b/src/plugins/debugger/debuggerruncontrol.h index 460313f245c..1e7c92b29b5 100644 --- a/src/plugins/debugger/debuggerruncontrol.h +++ b/src/plugins/debugger/debuggerruncontrol.h @@ -85,7 +85,6 @@ public: void addQmlServerInferiorCommandLineArgumentIfNeeded(); void setupPortsGatherer(); -protected: bool isCppDebugging() const; bool isQmlDebugging() const; diff --git a/src/plugins/projectexplorer/runcontrol.h b/src/plugins/projectexplorer/runcontrol.h index 850117d6764..326660bb03a 100644 --- a/src/plugins/projectexplorer/runcontrol.h +++ b/src/plugins/projectexplorer/runcontrol.h @@ -287,7 +287,6 @@ public: explicit SimpleTargetRunner(RunControl *runControl); ~SimpleTargetRunner() override; -protected: void setStartModifier(const std::function &startModifier); Utils::CommandLine commandLine() const;