RunControl: Remove unused isStopping()

Change-Id: Ib294a3728bbd106665dc237623deff7ee8cd4bd5
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Jarek Kobus
2023-07-03 11:41:12 +02:00
parent 6e59fa4305
commit 3f6dcf6ad1
2 changed files with 0 additions and 6 deletions

View File

@@ -1029,11 +1029,6 @@ bool RunControl::isStarting() const
return d->state == RunControlState::Starting; return d->state == RunControlState::Starting;
} }
bool RunControl::isStopping() const
{
return d->state == RunControlState::Stopping;
}
bool RunControl::isStopped() const bool RunControl::isStopped() const
{ {
return d->state == RunControlState::Stopped; return d->state == RunControlState::Stopped;

View File

@@ -172,7 +172,6 @@ public:
bool isRunning() const; bool isRunning() const;
bool isStarting() const; bool isStarting() const;
bool isStopping() const;
bool isStopped() const; bool isStopped() const;
void setIcon(const Utils::Icon &icon); void setIcon(const Utils::Icon &icon);