Add convenience function Database::addDeletedObject(const Uuid&).

Drop Group::addDeletedObject() and make Entry call the Database function
instead.
This commit is contained in:
Felix Geyer 2012-04-22 00:29:39 +02:00
parent 72defa375d
commit 411617cc8b
5 changed files with 22 additions and 24 deletions

View file

@ -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);
}
}