mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +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
|
@ -85,7 +85,10 @@ void EntryModel::setEntryList(const QList<Entry*>& entries)
|
|||
|
||||
Q_FOREACH (Database* db, databases) {
|
||||
Q_ASSERT(db);
|
||||
m_allGroups.append(db->rootGroup()->groupsRecursive(true));
|
||||
Q_FOREACH (const Group* group, db->rootGroup()->groupsRecursive(true)) {
|
||||
m_allGroups.append(group);
|
||||
}
|
||||
|
||||
if (db->metadata()->recycleBin()) {
|
||||
m_allGroups.removeOne(db->metadata()->recycleBin());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue