Make KeePass2XmlReader::parseGroup() safe against reordered xml elements.

This commit is contained in:
Felix Geyer 2013-04-14 14:54:56 +02:00
parent 3acb33e05a
commit 5588792344
3 changed files with 28 additions and 4 deletions

View file

@ -490,6 +490,12 @@ Group* Group::clone() const
return clonedGroup;
}
void Group::copyDataFrom(const Group* other)
{
m_data = other->m_data;
m_lastTopVisibleEntry = other->m_lastTopVisibleEntry;
}
void Group::addEntry(Entry* entry)
{
Q_ASSERT(entry);