mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Use QMap to store attributes and attachments.
QMap keeps the keys in a consistent order (sorted).
This commit is contained in:
parent
d527e63f1f
commit
57a953476a
2 changed files with 9 additions and 21 deletions
|
@ -135,9 +135,9 @@ const QList<AutoTypeAssociation>& Entry::autoTypeAssociations() const
|
|||
return m_autoTypeAssociations;
|
||||
}
|
||||
|
||||
const QList<QString>& Entry::attributes() const
|
||||
const QList<QString> Entry::attributes() const
|
||||
{
|
||||
return m_attributesKeys;
|
||||
return m_attributes.keys();
|
||||
}
|
||||
|
||||
QString Entry::attributeValue(const QString& key) const
|
||||
|
@ -145,9 +145,9 @@ QString Entry::attributeValue(const QString& key) const
|
|||
return m_attributes.value(key);
|
||||
}
|
||||
|
||||
const QList<QString>& Entry::attachments() const
|
||||
const QList<QString> Entry::attachments() const
|
||||
{
|
||||
return m_binariesKeys;
|
||||
return m_binaries.keys();
|
||||
}
|
||||
|
||||
QByteArray Entry::attachmentValue(const QString& key) const
|
||||
|
@ -264,10 +264,6 @@ void Entry::addAutoTypeAssociation(const AutoTypeAssociation& assoc)
|
|||
|
||||
void Entry::setAttribute(const QString& key, const QString& value, bool protect)
|
||||
{
|
||||
if (!m_attributes.contains(key)) {
|
||||
m_attributesKeys.append(key);
|
||||
}
|
||||
|
||||
m_attributes.insert(key, value);
|
||||
|
||||
if (protect) {
|
||||
|
@ -286,17 +282,12 @@ void Entry::removeAttribute(const QString& key)
|
|||
{
|
||||
Q_ASSERT(!isDefaultAttribute(key));
|
||||
|
||||
m_attributesKeys.removeOne(key);
|
||||
m_attributes.remove(key);
|
||||
m_protectedAttributes.remove(key);
|
||||
}
|
||||
|
||||
void Entry::setAttachment(const QString& key, const QByteArray& value, bool protect)
|
||||
{
|
||||
if (!m_binaries.contains(key)) {
|
||||
m_binariesKeys.append(key);
|
||||
}
|
||||
|
||||
m_binaries.insert(key, value);
|
||||
|
||||
if (protect) {
|
||||
|
@ -309,7 +300,6 @@ void Entry::setAttachment(const QString& key, const QByteArray& value, bool prot
|
|||
|
||||
void Entry::removeAttachment(const QString& key)
|
||||
{
|
||||
m_binariesKeys.removeOne(key);
|
||||
m_binaries.remove(key);
|
||||
m_protectedAttachments.remove(key);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue