QmakeProjectManager: Remove unused QMakeStep::forced() accessor

The m_forced state is completely handled in the step's implementation,
nobody accesses it.

Change-Id: I05e15a53b08462e9c82d3f498e26aea0303a4ecf
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2018-01-05 15:20:30 +01:00
parent 517b35c9d7
commit 2d108079bd
2 changed files with 0 additions and 6 deletions

View File

@@ -284,11 +284,6 @@ void QMakeStep::setForced(bool b)
m_forced = b;
}
bool QMakeStep::forced()
{
return m_forced;
}
ProjectExplorer::BuildStepConfigWidget *QMakeStep::createConfigWidget()
{
return new QMakeStepConfigWidget(this);

View File

@@ -119,7 +119,6 @@ public:
ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override;
bool immutable() const override;
void setForced(bool b);
bool forced();
// the complete argument line
QString allArguments(const QtSupport::BaseQtVersion *v, bool shorted = false) const;