mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Add non-const version of Group::groupsRecursive().
This commit is contained in:
parent
835c411d12
commit
33650c4a04
4 changed files with 20 additions and 2 deletions
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue