Add Entry::copyDataFrom().

This commit is contained in:
Felix Geyer 2013-04-14 14:21:42 +02:00
parent 3658a65380
commit 61ee763515
4 changed files with 47 additions and 0 deletions

View file

@ -452,6 +452,16 @@ Entry* Entry::clone() const
return entry;
}
void Entry::copyDataFrom(const Entry* other)
{
setUpdateTimeinfo(false);
m_data = other->m_data;
m_attributes->copyDataFrom(other->m_attributes);
m_attachments->copyDataFrom(other->m_attachments);
m_autoTypeAssociations->copyDataFrom(other->m_autoTypeAssociations);
setUpdateTimeinfo(true);
}
void Entry::beginUpdate()
{
Q_ASSERT(!m_tmpHistoryItem);