forked from qt-creator/qt-creator
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:
@@ -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;
|
||||||
|
@@ -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);
|
||||||
|
Reference in New Issue
Block a user