mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Stop suppressing signals in Group dtor.
That way we emit entry/group removed signals. Move cleanupParent() call to the bottom so we maintain the group tree structure for objects that connect to those signals.
This commit is contained in:
parent
72d17c045f
commit
c7593a3047
3 changed files with 8 additions and 10 deletions
|
@ -36,19 +36,15 @@ Group::Group()
|
|||
|
||||
Group::~Group()
|
||||
{
|
||||
cleanupParent();
|
||||
this->blockSignals(true);
|
||||
// Destroy entries and children manually so DeletedObjects can be added
|
||||
// to database.
|
||||
QList<Entry*> entries = m_entries;
|
||||
Q_FOREACH (Entry* entry, entries) {
|
||||
entry->blockSignals(true);
|
||||
delete entry;
|
||||
}
|
||||
|
||||
QList<Group*> children = m_children;
|
||||
Q_FOREACH (Group* group, children) {
|
||||
group->blockSignals(true);
|
||||
delete group;
|
||||
}
|
||||
|
||||
|
@ -58,6 +54,8 @@ Group::~Group()
|
|||
delGroup.uuid = m_uuid;
|
||||
m_db->addDeletedObject(delGroup);
|
||||
}
|
||||
|
||||
cleanupParent();
|
||||
}
|
||||
|
||||
Group* Group::createRecycleBin()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue