Merged keepassx-http.

This commit is contained in:
Keith Bennett 2014-03-22 12:48:43 +00:00
commit 73f91db939
114 changed files with 21277 additions and 199 deletions

View file

@ -52,6 +52,11 @@ QString EntryAttributes::value(const QString& key) const
return m_attributes.value(key);
}
bool EntryAttributes::contains(const QString &key) const
{
return m_attributes.contains(key);
}
bool EntryAttributes::isProtected(const QString& key) const
{
return m_protectedAttributes.contains(key);