mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-01-10 04:51:10 -05:00
Prevent unnecessary memory allocations
This commit is contained in:
parent
852e89c0df
commit
be312bbe4f
5 changed files with 13 additions and 13 deletions
|
|
@ -41,7 +41,7 @@ QList<QString> EntryAttributes::keys() const
|
|||
|
||||
bool EntryAttributes::hasKey(const QString& key) const
|
||||
{
|
||||
return m_attributes.keys().contains(key);
|
||||
return m_attributes.contains(key);
|
||||
}
|
||||
|
||||
QList<QString> EntryAttributes::customKeys()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue