mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-07 06:22:44 -04:00
Return Q_NULLPTR instead of 0 when the return type is a pointer.
This commit is contained in:
parent
fcc936ceff
commit
ecea101962
12 changed files with 67 additions and 66 deletions
|
@ -104,7 +104,7 @@ Entry* Database::recFindEntry(const Uuid& uuid, Group* group)
|
|||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
return Q_NULLPTR;
|
||||
}
|
||||
|
||||
Group* Database::resolveGroup(const Uuid& uuid)
|
||||
|
@ -125,7 +125,7 @@ Group* Database::recFindGroup(const Uuid& uuid, Group* group)
|
|||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
return Q_NULLPTR;
|
||||
}
|
||||
|
||||
QList<DeletedObject> Database::deletedObjects()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue