diff options
Diffstat (limited to 'src/declarative/util/qmlanimation_p_p.h')
-rw-r--r-- | src/declarative/util/qmlanimation_p_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/util/qmlanimation_p_p.h b/src/declarative/util/qmlanimation_p_p.h index 2f911b4..d680194 100644 --- a/src/declarative/util/qmlanimation_p_p.h +++ b/src/declarative/util/qmlanimation_p_p.h @@ -205,7 +205,7 @@ public: QmlAbstractAnimationPrivate() : running(false), paused(false), alwaysRunToEnd(false), repeat(false), connectedTimeLine(false), componentComplete(true), startOnCompletion(false), - group(0) {} + avoidPropertyValueSourceStart(false), group(0) {} bool running:1; bool paused:1; @@ -215,6 +215,7 @@ public: bool componentComplete:1; bool startOnCompletion:1; + bool avoidPropertyValueSourceStart:1; void commence(); |