summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp')
-rw-r--r--tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp b/tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp
index acdd3cff81..dfb2752ee0 100644
--- a/tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp
+++ b/tests/auto/widgets/graphicsview/qgraphicsitemanimation/tst_qgraphicsitemanimation.cpp
@@ -151,7 +151,7 @@ void tst_QGraphicsItemAnimation::overwriteValueForStep()
void tst_QGraphicsItemAnimation::setTimeLine()
{
QGraphicsItemAnimation animation;
- QCOMPARE(animation.timeLine(), (QTimeLine *)0);
+ QCOMPARE(animation.timeLine(), nullptr);
QPointer<QTimeLine> line1 = new QTimeLine;
animation.setTimeLine(line1);
@@ -161,7 +161,7 @@ void tst_QGraphicsItemAnimation::setTimeLine()
QCOMPARE(animation.timeLine(), (QTimeLine *)line1);
animation.setTimeLine(0);
- QCOMPARE(animation.timeLine(), (QTimeLine *)0);
+ QCOMPARE(animation.timeLine(), nullptr);
QVERIFY(!line1);
QTimeLine *line2 = new QTimeLine;
@@ -169,7 +169,7 @@ void tst_QGraphicsItemAnimation::setTimeLine()
QCOMPARE(animation.timeLine(), (QTimeLine *)line2);
delete line2;
- QCOMPARE(animation.timeLine(), (QTimeLine *)0);
+ QCOMPARE(animation.timeLine(), nullptr);
}
QTEST_MAIN(tst_QGraphicsItemAnimation)