aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick
diff options
context:
space:
mode:
authorAndreas Buhr <andreas@andreasbuhr.de>2021-01-13 11:39:11 +0100
committerAndreas Buhr <andreas@andreasbuhr.de>2021-01-13 15:51:38 +0100
commita34327a557f0460d0786a845846e49b90f83a701 (patch)
treee3ef1c3f2e8844b6adea7289483a73c4edcddc8f /src/quick
parent2996439993c587bc9c7169e4f152169f28247c21 (diff)
Remove unused variable fromSourced
Change-Id: I20ff922136018960371ef00c6aa5c30d29c25690 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/quick')
-rw-r--r--src/quick/util/qquickanimation_p_p.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/quick/util/qquickanimation_p_p.h b/src/quick/util/qquickanimation_p_p.h
index 1b62f97faf..f04026326b 100644
--- a/src/quick/util/qquickanimation_p_p.h
+++ b/src/quick/util/qquickanimation_p_p.h
@@ -270,7 +270,7 @@ class QQuickPropertyAnimationPrivate : public QQuickAbstractAnimationPrivate
Q_DECLARE_PUBLIC(QQuickPropertyAnimation)
public:
QQuickPropertyAnimationPrivate()
- : QQuickAbstractAnimationPrivate(), target(nullptr), fromSourced(false), fromIsDefined(false), toIsDefined(false),
+ : QQuickAbstractAnimationPrivate(), target(nullptr), fromIsDefined(false), toIsDefined(false),
defaultToInterpolatorType(0), interpolatorType(0), interpolator(nullptr), duration(250), actions(nullptr) {}
QVariant from;
@@ -283,7 +283,6 @@ public:
QList<QObject *> exclude;
QString defaultProperties;
- bool fromSourced;
bool fromIsDefined:1;
bool toIsDefined:1;
bool defaultToInterpolatorType:1;