Rename addAttribute() to setAttribute() and addAttachment() to setAttachment().

This commit is contained in:
Felix Geyer
2012-01-07 16:22:11 +01:00
parent 40e96ad7b3
commit e397080d79
4 changed files with 13 additions and 13 deletions

View File

@@ -537,7 +537,7 @@ void KeePass2XmlReader::parseEntryString(Entry *entry)
}
}
entry->addAttribute(key, value, isProtected);
entry->setAttribute(key, value, isProtected);
}
else {
skipCurrentElement();
@@ -564,7 +564,7 @@ void KeePass2XmlReader::parseEntryBinary(Entry *entry)
m_randomStream->processInPlace(value);
}
entry->addAttachment(key, value, isProtected);
entry->setAttachment(key, value, isProtected);
}
else {
skipCurrentElement();