summaryrefslogtreecommitdiffstats
path: root/examples/widgets/animation/easing/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/animation/easing/animation.h')
-rw-r--r--examples/widgets/animation/easing/animation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/widgets/animation/easing/animation.h b/examples/widgets/animation/easing/animation.h
index b6b4824583..111ad44f45 100644
--- a/examples/widgets/animation/easing/animation.h
+++ b/examples/widgets/animation/easing/animation.h
@@ -15,8 +15,8 @@ public:
CirclePath,
NPathTypes
};
- Animation(QObject *target, const QByteArray &prop)
- : QPropertyAnimation(target, prop)
+ Animation(QObject *target, const QByteArray &prop, QObject *parent = nullptr)
+ : QPropertyAnimation(target, prop, parent)
{
setPathType(LinearPath);
}