summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp')
-rw-r--r--tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp b/tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp
index 008ac696fc..1a03254e0b 100644
--- a/tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp
+++ b/tests/auto/corelib/animation/qsequentialanimationgroup/tst_qsequentialanimationgroup.cpp
@@ -108,7 +108,7 @@ public:
class DummyPropertyAnimation : public QPropertyAnimation
{
public:
- DummyPropertyAnimation(QObject *parent = 0) : QPropertyAnimation(parent)
+ DummyPropertyAnimation(QObject *parent = nullptr) : QPropertyAnimation(parent)
{
setTargetObject(&o);
this->setPropertyName("value");
@@ -122,7 +122,7 @@ class UncontrolledAnimation : public QPropertyAnimation
{
Q_OBJECT
public:
- UncontrolledAnimation(QObject *target, QObject *parent = 0)
+ UncontrolledAnimation(QObject *target, QObject *parent = nullptr)
: QPropertyAnimation(target, "value", parent)
{
setDuration(250);