mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
clang-tidy: use nullptr
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
7e1d980d08
commit
a4d4adb1f6
4 changed files with 11 additions and 11 deletions
|
@ -164,7 +164,7 @@ void TestEntryModel::testAttachmentsModel()
|
|||
|
||||
QSignalSpy spyReset(model, SIGNAL(modelReset()));
|
||||
entryAttachments->clear();
|
||||
model->setEntryAttachments(0);
|
||||
model->setEntryAttachments(nullptr);
|
||||
QCOMPARE(spyReset.count(), 2);
|
||||
QCOMPARE(model->rowCount(), 0);
|
||||
|
||||
|
@ -217,7 +217,7 @@ void TestEntryModel::testAttributesModel()
|
|||
|
||||
QSignalSpy spyReset(model, SIGNAL(modelReset()));
|
||||
entryAttributes->clear();
|
||||
model->setEntryAttributes(0);
|
||||
model->setEntryAttributes(nullptr);
|
||||
QCOMPARE(spyReset.count(), 2);
|
||||
QCOMPARE(model->rowCount(), 0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue