mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Add entry clone functionality.
This commit is contained in:
parent
7ebee78c75
commit
eb82df5994
8 changed files with 50 additions and 1 deletions
|
@ -413,6 +413,19 @@ void Entry::truncateHistory() {
|
|||
}
|
||||
}
|
||||
|
||||
Entry* Entry::clone() const
|
||||
{
|
||||
Entry* entry = new Entry();
|
||||
entry->setUpdateTimeinfo(false);
|
||||
entry->m_uuid = m_uuid;
|
||||
entry->m_data = m_data;
|
||||
*entry->m_attributes = *m_attributes;
|
||||
*entry->m_attachments = *m_attachments;
|
||||
entry->setUpdateTimeinfo(true);
|
||||
|
||||
return entry;
|
||||
}
|
||||
|
||||
void Entry::beginUpdate()
|
||||
{
|
||||
Q_ASSERT(!m_tmpHistoryItem);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue