mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Small optimizations.
This commit is contained in:
parent
57b0c17733
commit
1c7e8f6921
4 changed files with 12 additions and 11 deletions
|
@ -362,21 +362,22 @@ void Entry::addHistoryItem(Entry* entry)
|
|||
Q_EMIT modified();
|
||||
}
|
||||
|
||||
void Entry::removeHistoryItems(QList<Entry*> historyEntries)
|
||||
void Entry::removeHistoryItems(const QList<Entry*>& historyEntries)
|
||||
{
|
||||
bool emitModified = historyEntries.count() > 0;
|
||||
if (historyEntries.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
Q_FOREACH (Entry* entry, historyEntries) {
|
||||
Q_ASSERT(!entry->parent());
|
||||
Q_ASSERT(entry->uuid() == uuid());
|
||||
int numberOfRemovedEntries = m_history.removeAll(entry);
|
||||
Q_ASSERT(numberOfRemovedEntries > 0);
|
||||
Q_UNUSED(numberOfRemovedEntries);
|
||||
Q_ASSERT(m_history.contains(entry));
|
||||
|
||||
m_history.removeOne(entry);
|
||||
delete entry;
|
||||
}
|
||||
|
||||
if (emitModified) {
|
||||
Q_EMIT modified();
|
||||
}
|
||||
Q_EMIT modified();
|
||||
}
|
||||
|
||||
void Entry::truncateHistory()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue