mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-01 21:12:11 -04:00
Use Q_NULLPTR instead of 0.
This commit is contained in:
parent
fd18bc0330
commit
3658a65380
1 changed files with 1 additions and 1 deletions
|
@ -553,7 +553,7 @@ Entry* KeePass2XmlReader::parseEntry(bool history)
|
|||
{
|
||||
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Entry");
|
||||
|
||||
Entry* entry = 0;
|
||||
Entry* entry = Q_NULLPTR;
|
||||
while (!m_xml.error() && m_xml.readNextStartElement()) {
|
||||
if (m_xml.name() == "UUID") {
|
||||
Uuid uuid = readUuid();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue