Minor: Add a few nullptrs

This commit is contained in:
Kevin Funk 2018-09-13 09:56:34 +02:00
parent 32d4edff51
commit 29b8d0f258

View file

@ -641,7 +641,7 @@ void TestWaylandRegistry::testOutOfSyncRemoval()
QVERIFY(blurRemovedSpy.count() == 0);
//use the in the client
blurManager->createBlur(surface.data(), 0);
blurManager->createBlur(surface.data(), nullptr);
//now process events,
QVERIFY(blurRemovedSpy.wait());
@ -656,7 +656,7 @@ void TestWaylandRegistry::testOutOfSyncRemoval()
QVERIFY(contrastRemovedSpy.count() == 0);
//use the in the client
contrastManager->createContrast(surface.data(), 0);
contrastManager->createContrast(surface.data(), nullptr);
//now process events,
QVERIFY(contrastRemovedSpy.wait());