From 3f6dcf6ad1d8c3410944615d77e870e269845de3 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 3 Jul 2023 11:41:12 +0200 Subject: [PATCH] RunControl: Remove unused isStopping() Change-Id: Ib294a3728bbd106665dc237623deff7ee8cd4bd5 Reviewed-by: hjk Reviewed-by: --- src/plugins/projectexplorer/runcontrol.cpp | 5 ----- src/plugins/projectexplorer/runcontrol.h | 1 - 2 files changed, 6 deletions(-) diff --git a/src/plugins/projectexplorer/runcontrol.cpp b/src/plugins/projectexplorer/runcontrol.cpp index 21f944989b8..31294f47f1c 100644 --- a/src/plugins/projectexplorer/runcontrol.cpp +++ b/src/plugins/projectexplorer/runcontrol.cpp @@ -1029,11 +1029,6 @@ bool RunControl::isStarting() const return d->state == RunControlState::Starting; } -bool RunControl::isStopping() const -{ - return d->state == RunControlState::Stopping; -} - bool RunControl::isStopped() const { return d->state == RunControlState::Stopped; diff --git a/src/plugins/projectexplorer/runcontrol.h b/src/plugins/projectexplorer/runcontrol.h index 84a5b5c1667..799ec538dd3 100644 --- a/src/plugins/projectexplorer/runcontrol.h +++ b/src/plugins/projectexplorer/runcontrol.h @@ -172,7 +172,6 @@ public: bool isRunning() const; bool isStarting() const; - bool isStopping() const; bool isStopped() const; void setIcon(const Utils::Icon &icon);