mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-29 19:06:55 -05:00
Refactor DetailsWidget
This commit is contained in:
parent
3ba42ee32e
commit
6007e0de71
9 changed files with 872 additions and 739 deletions
|
|
@ -439,11 +439,11 @@ void Group::setParent(Database* db)
|
|||
QObject::setParent(db);
|
||||
}
|
||||
|
||||
QStringList Group::hierarchy()
|
||||
QStringList Group::hierarchy() const
|
||||
{
|
||||
QStringList hierarchy;
|
||||
Group* group = this;
|
||||
Group* parent = m_parent;
|
||||
const Group* group = this;
|
||||
const Group* parent = m_parent;
|
||||
hierarchy.prepend(group->name());
|
||||
|
||||
while (parent) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue