clang-tidy: use nullptr

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2022-04-11 18:14:57 -07:00 committed by Jonathan White
parent 7e1d980d08
commit a4d4adb1f6
4 changed files with 11 additions and 11 deletions

View file

@ -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);