mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-05 05:31: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");
|
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Entry");
|
||||||
|
|
||||||
Entry* entry = 0;
|
Entry* entry = Q_NULLPTR;
|
||||||
while (!m_xml.error() && m_xml.readNextStartElement()) {
|
while (!m_xml.error() && m_xml.readNextStartElement()) {
|
||||||
if (m_xml.name() == "UUID") {
|
if (m_xml.name() == "UUID") {
|
||||||
Uuid uuid = readUuid();
|
Uuid uuid = readUuid();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue