mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add convenience function Database::addDeletedObject(const Uuid&).
Drop Group::addDeletedObject() and make Entry call the Database function instead.
This commit is contained in:
parent
72defa375d
commit
411617cc8b
5 changed files with 22 additions and 24 deletions
|
@ -45,10 +45,9 @@ Entry::~Entry()
|
|||
if (m_group) {
|
||||
m_group->removeEntry(this);
|
||||
|
||||
DeletedObject delEntry;
|
||||
delEntry.deletionTime = QDateTime::currentDateTimeUtc();
|
||||
delEntry.uuid = m_uuid;
|
||||
m_group->addDeletedObject(delEntry);
|
||||
if (m_group->database()) {
|
||||
m_group->database()->addDeletedObject(m_uuid);
|
||||
}
|
||||
}
|
||||
|
||||
qDeleteAll(m_history);
|
||||
|
@ -362,10 +361,7 @@ void Entry::setGroup(Group* group)
|
|||
if (m_group) {
|
||||
m_group->removeEntry(this);
|
||||
if (m_group->database() != group->database()) {
|
||||
DeletedObject delEntry;
|
||||
delEntry.deletionTime = QDateTime::currentDateTimeUtc();
|
||||
delEntry.uuid = m_uuid;
|
||||
m_group->addDeletedObject(delEntry);
|
||||
m_group->database()->addDeletedObject(m_uuid);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue