mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
Use upper case names for constants.
This commit is contained in:
parent
1cfc34361a
commit
f5dd24fdbe
3 changed files with 4 additions and 4 deletions
|
@ -19,10 +19,10 @@
|
||||||
|
|
||||||
#include <QtCore/QHash>
|
#include <QtCore/QHash>
|
||||||
|
|
||||||
const int Uuid::length = 16;
|
const int Uuid::LENGTH = 16;
|
||||||
|
|
||||||
Uuid::Uuid()
|
Uuid::Uuid()
|
||||||
: m_data(length, 0)
|
: m_data(LENGTH, 0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ public:
|
||||||
bool isNull() const;
|
bool isNull() const;
|
||||||
bool operator==(const Uuid& other) const;
|
bool operator==(const Uuid& other) const;
|
||||||
bool operator!=(const Uuid& other) const;
|
bool operator!=(const Uuid& other) const;
|
||||||
static const int length;
|
static const int LENGTH;
|
||||||
static Uuid fromBase64(const QString& str);
|
static Uuid fromBase64(const QString& str);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -696,7 +696,7 @@ int KeePass2XmlReader::readNumber()
|
||||||
Uuid KeePass2XmlReader::readUuid()
|
Uuid KeePass2XmlReader::readUuid()
|
||||||
{
|
{
|
||||||
QByteArray uuidBin = readBinary();
|
QByteArray uuidBin = readBinary();
|
||||||
if (uuidBin.length() != Uuid::length) {
|
if (uuidBin.length() != Uuid::LENGTH) {
|
||||||
raiseError();
|
raiseError();
|
||||||
return Uuid();
|
return Uuid();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue