mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Replace EntryAttachments and EntryAttributes operator=() with copyDataFrom().
QObjects are not supposed to have assignment operators.
This commit is contained in:
parent
c7107de2a7
commit
a50d2709e7
6 changed files with 24 additions and 28 deletions
|
@ -494,8 +494,8 @@ Entry* Entry::clone() const
|
|||
entry->setUpdateTimeinfo(false);
|
||||
entry->m_uuid = m_uuid;
|
||||
entry->m_data = m_data;
|
||||
*entry->m_attributes = *m_attributes;
|
||||
*entry->m_attachments = *m_attachments;
|
||||
entry->m_attributes->copyDataFrom(m_attributes);
|
||||
entry->m_attachments->copyDataFrom(m_attachments);
|
||||
entry->m_autoTypeAssociations->copyDataFrom(this->m_autoTypeAssociations);
|
||||
entry->setUpdateTimeinfo(true);
|
||||
|
||||
|
@ -510,8 +510,8 @@ void Entry::beginUpdate()
|
|||
m_tmpHistoryItem->setUpdateTimeinfo(false);
|
||||
m_tmpHistoryItem->m_uuid = m_uuid;
|
||||
m_tmpHistoryItem->m_data = m_data;
|
||||
*m_tmpHistoryItem->m_attributes = *m_attributes;
|
||||
*m_tmpHistoryItem->m_attachments = *m_attachments;
|
||||
m_tmpHistoryItem->m_attributes->copyDataFrom(m_attributes);
|
||||
m_tmpHistoryItem->m_attachments->copyDataFrom(m_attachments);
|
||||
|
||||
m_modifiedSinceBegin = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue