mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-01-03 01:25:48 -05:00
Add hasKey() convenience methods.
This commit is contained in:
parent
876a75b572
commit
3ea0592b53
4 changed files with 12 additions and 0 deletions
|
|
@ -36,6 +36,11 @@ QList<QString> EntryAttributes::keys() const
|
|||
return m_attributes.keys();
|
||||
}
|
||||
|
||||
bool EntryAttributes::hasKey(const QString& key) const
|
||||
{
|
||||
return m_attributes.keys().contains(key);
|
||||
}
|
||||
|
||||
QList<QString> EntryAttributes::customKeys()
|
||||
{
|
||||
QList<QString> customKeys;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue