Minor: Add a few nullptrs
This commit is contained in:
parent
32d4edff51
commit
29b8d0f258
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue