Copy custom icons when copying/moving entries/groups to another database.

This commit is contained in:
Felix Geyer 2013-04-07 18:32:43 +02:00
parent 8ed0379136
commit 5a96e19ce9
5 changed files with 53 additions and 0 deletions

View file

@ -436,6 +436,27 @@ QList<const Group*> Group::groupsRecursive(bool includeSelf) const
return groupList;
}
QSet<Uuid> Group::customIconsRecursive() const
{
QSet<Uuid> result;
if (!iconUuid().isNull()) {
result.insert(iconUuid());
}
Q_FOREACH (Entry* entry, entriesRecursive(true)) {
if (!entry->iconUuid().isNull()) {
result.insert(entry->iconUuid());
}
}
Q_FOREACH (Group* group, m_children) {
result.unite(group->customIconsRecursive());
}
return result;
}
Group* Group::clone() const
{
// TODO: what to do about custom icons?