diff --git a/src/core/Entry.cpp b/src/core/Entry.cpp index 156dd3d9e..c04c4a85b 100644 --- a/src/core/Entry.cpp +++ b/src/core/Entry.cpp @@ -135,9 +135,9 @@ const QList& Entry::autoTypeAssociations() const return m_autoTypeAssociations; } -const QList& Entry::attributes() const +const QList 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& Entry::attachments() const +const QList 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); } diff --git a/src/core/Entry.h b/src/core/Entry.h index 17abc99b4..be95e2d67 100644 --- a/src/core/Entry.h +++ b/src/core/Entry.h @@ -18,7 +18,7 @@ #ifndef KEEPASSX_ENTRY_H #define KEEPASSX_ENTRY_H -#include +#include #include #include #include @@ -60,9 +60,9 @@ public: int autoTypeObfuscation() const; QString defaultAutoTypeSequence() const; const QList& autoTypeAssociations() const; - const QList& attributes() const; + const QList attributes() const; QString attributeValue(const QString& key) const; - const QList& attachments() const; + const QList attachments() const; QByteArray attachmentValue(const QString& key) const; bool isAttributeProtected(const QString& key) const; bool isAttachmentProtected(const QString& key) const; @@ -122,10 +122,8 @@ private: int m_autoTypeObfuscation; QString m_defaultAutoTypeSequence; QList m_autoTypeAssociations; - QHash m_attributes; - QList m_attributesKeys; - QHash m_binaries; - QList m_binariesKeys; + QMap m_attributes; + QMap m_binaries; QSet m_protectedAttributes; QSet m_protectedAttachments;