forked from qt-creator/qt-creator
ProjectExplorer: Simplify BuildStep::init() signature
The extra parameter was always computed but used only in one place, and that use got removed lately. Change-Id: Ie10c0107ca70ee97ce03f83294992aab8d1a3ffe Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -197,10 +197,8 @@ void AbstractProcessStep::setIgnoreReturnValue(bool b)
|
||||
YourBuildStep::init().
|
||||
*/
|
||||
|
||||
bool AbstractProcessStep::init(QList<const BuildStep *> &earlierSteps)
|
||||
bool AbstractProcessStep::init()
|
||||
{
|
||||
Q_UNUSED(earlierSteps);
|
||||
|
||||
d->m_candidates.clear();
|
||||
const Utils::FileNameList fl = project()->files(Project::AllFiles);
|
||||
for (const Utils::FileName &file : fl)
|
||||
|
||||
Reference in New Issue
Block a user