Support setting a new parent group with an empty db.

This commit is contained in:
Felix Geyer 2012-04-27 10:50:32 +02:00
parent fdf4ab9d76
commit c36481edae
2 changed files with 38 additions and 29 deletions

View file

@ -394,13 +394,15 @@ Group* Entry::group()
void Entry::setGroup(Group* group)
{
Q_ASSERT(group);
if (m_group == group) {
return;
}
if (m_group) {
m_group->removeEntry(this);
if (m_group->database() != group->database() && m_group->database()) {
if (m_group->database() && m_group->database() != group->database()) {
m_group->database()->addDeletedObject(m_uuid);
}
}