mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
Use the Uuid::LENGTH constant instead of literals.
This commit is contained in:
parent
9f0c3e5411
commit
8b5dcc7bee
1 changed files with 2 additions and 2 deletions
|
@ -30,13 +30,13 @@ Uuid::Uuid()
|
|||
|
||||
Uuid::Uuid(const QByteArray& data)
|
||||
{
|
||||
Q_ASSERT(data.size() == 16);
|
||||
Q_ASSERT(data.size() == LENGTH);
|
||||
|
||||
m_data = data;
|
||||
}
|
||||
|
||||
Uuid Uuid::random() {
|
||||
return Uuid(Random::randomArray(16));
|
||||
return Uuid(Random::randomArray(LENGTH));
|
||||
}
|
||||
|
||||
QString Uuid::toBase64() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue