forked from qt-creator/qt-creator
ProjectExplorer: Add a convienience BuildStepList::firstStepWithId
For later use. Change-Id: I696e3e03e1f8a82c25b29c9cf4b311360d83c12f Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -153,6 +153,11 @@ QList<BuildStep *> BuildStepList::steps() const
|
|||||||
return m_steps;
|
return m_steps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BuildStep *BuildStepList::firstStepWithId(Core::Id id) const
|
||||||
|
{
|
||||||
|
return Utils::findOrDefault(m_steps, Utils::equal(&BuildStep::id, id));
|
||||||
|
}
|
||||||
|
|
||||||
void BuildStepList::insertStep(int position, BuildStep *step)
|
void BuildStepList::insertStep(int position, BuildStep *step)
|
||||||
{
|
{
|
||||||
m_steps.insert(position, step);
|
m_steps.insert(position, step);
|
||||||
|
@@ -58,6 +58,7 @@ public:
|
|||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
BuildStep *firstStepWithId(Core::Id id) const;
|
||||||
|
|
||||||
int count() const;
|
int count() const;
|
||||||
bool isEmpty() const;
|
bool isEmpty() const;
|
||||||
|
Reference in New Issue
Block a user