Use upper case names for constants.

This commit is contained in:
Felix Geyer 2010-09-05 11:46:36 +02:00
parent 1cfc34361a
commit f5dd24fdbe
3 changed files with 4 additions and 4 deletions

View file

@ -696,7 +696,7 @@ int KeePass2XmlReader::readNumber()
Uuid KeePass2XmlReader::readUuid()
{
QByteArray uuidBin = readBinary();
if (uuidBin.length() != Uuid::length) {
if (uuidBin.length() != Uuid::LENGTH) {
raiseError();
return Uuid();
}