mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Add asserts in GroupModel::groupAboutToRemove().
This commit is contained in:
parent
db08058c4e
commit
7be87051ab
1 changed files with 2 additions and 0 deletions
|
@ -319,7 +319,9 @@ void GroupModel::groupAboutToRemove(Group* group)
|
|||
Q_ASSERT(group->parentGroup());
|
||||
|
||||
QModelIndex parentIndex = parent(group);
|
||||
Q_ASSERT(parentIndex.isValid());
|
||||
int pos = group->parentGroup()->children().indexOf(group);
|
||||
Q_ASSERT(pos != -1);
|
||||
|
||||
beginRemoveRows(parentIndex, pos, pos);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue