mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add flags to Entry::clone() for customized cloning.
This commit is contained in:
parent
cb804eb143
commit
f2dfef8c41
8 changed files with 97 additions and 14 deletions
|
@ -474,7 +474,7 @@ Group* Group::clone() const
|
|||
clonedGroup->m_data = m_data;
|
||||
|
||||
Q_FOREACH (Entry* entry, entries()) {
|
||||
Entry* clonedEntry = entry->clone();
|
||||
Entry* clonedEntry = entry->clone(Entry::CloneNewUuid | Entry::CloneResetTimeInfo);
|
||||
clonedEntry->setGroup(clonedGroup);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue