mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Minor changes to Group API to make it more explicit
* Include check for group as recycle bin directly into the Group::isRecycled() function * Return the original root group from Database::setRootGroup(...) to force memory management transfer
This commit is contained in:
@@ -1456,8 +1456,8 @@ Database* TestMerge::createTestDatabase()
|
||||
Database* TestMerge::createTestDatabaseStructureClone(Database* source, int entryFlags, int groupFlags)
|
||||
{
|
||||
auto db = new Database();
|
||||
// the old root group is deleted by QObject::parent relationship
|
||||
db->setRootGroup(source->rootGroup()->clone(static_cast<Entry::CloneFlag>(entryFlags),
|
||||
static_cast<Group::CloneFlag>(groupFlags)));
|
||||
auto oldGroup = db->setRootGroup(source->rootGroup()->clone(static_cast<Entry::CloneFlag>(entryFlags),
|
||||
static_cast<Group::CloneFlag>(groupFlags)));
|
||||
delete oldGroup;
|
||||
return db;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user