mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-10-15 15:00:58 -04:00
Add brackets.
This commit is contained in:
parent
9ef105e1ae
commit
8a964f35d1
1 changed files with 2 additions and 1 deletions
|
@ -52,8 +52,9 @@ QByteArray Uuid::toByteArray() const
|
|||
bool Uuid::isNull() const
|
||||
{
|
||||
for (int i=0; i<m_data.size(); ++i) {
|
||||
if (m_data[i] != 0)
|
||||
if (m_data[i] != 0) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue