mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 22:17:39 +03:00
Support Entry History and DeletedObjects.
This commit is contained in:
parent
5efccf32c9
commit
3193adc215
8 changed files with 140 additions and 17 deletions
|
@ -99,3 +99,13 @@ Group* Database::recFindGroup(const Uuid& uuid, Group* group)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
QList<DeletedObject> Database::deletedObjects()
|
||||
{
|
||||
return m_deletedObjects;
|
||||
}
|
||||
|
||||
void Database::addDeletedObject(const DeletedObject& delObj)
|
||||
{
|
||||
m_deletedObjects.append(delObj);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue