mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-11 00:13:03 -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
|
@ -81,7 +81,7 @@ Entry* EntryView::currentEntry()
|
|||
return m_model->entryFromIndex(m_sortModel->mapToSource(list.first()));
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
return Q_NULLPTR;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -101,7 +101,7 @@ Entry* EntryView::entryFromIndex(const QModelIndex& index)
|
|||
return m_model->entryFromIndex(m_sortModel->mapToSource(index));
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
return Q_NULLPTR;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue