Add non-const version of Group::groupsRecursive().

This commit is contained in:
Felix Geyer 2015-01-11 16:20:24 +01:00
parent 835c411d12
commit 33650c4a04
4 changed files with 20 additions and 2 deletions

View file

@ -434,6 +434,20 @@ QList<const Group*> Group::groupsRecursive(bool includeSelf) const
groupList.append(this);
}
Q_FOREACH (const Group* group, m_children) {
groupList.append(group->groupsRecursive(true));
}
return groupList;
}
QList<Group*> Group::groupsRecursive(bool includeSelf)
{
QList<Group*> groupList;
if (includeSelf) {
groupList.append(this);
}
Q_FOREACH (Group* group, m_children) {
groupList.append(group->groupsRecursive(true));
}