diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2011-02-18 03:52:10 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2011-02-21 05:00:35 (GMT) |
commit | 8e9c28eaa4d7a3372b9a9a21a984701b62f96456 (patch) | |
tree | e14036cce00381d65ccf655b4d6fef2a10accd1e /src/declarative/qml/qdeclarativevme.cpp | |
parent | fd198736e1da02f535bc81d9934cb4e8412a87bc (diff) | |
download | Qt-8e9c28eaa4d7a3372b9a9a21a984701b62f96456.zip Qt-8e9c28eaa4d7a3372b9a9a21a984701b62f96456.tar.gz Qt-8e9c28eaa4d7a3372b9a9a21a984701b62f96456.tar.bz2 |
Ensure animations start correctly when running is bound to a value.
Animations register to be started when the component is finalized,
but in the case of a binding, the registration doesn't happen until
we are already working with a copy of the finalization list. With this
patch, we no longer work with a copy, but with the actual list.
Change-Id: If460c250d2403590907e9ac854d277db68ba8b2a
Task-number: QTBUG-14042
Reviewed-by: Aaron Kennedy
Diffstat (limited to 'src/declarative/qml/qdeclarativevme.cpp')
-rw-r--r-- | src/declarative/qml/qdeclarativevme.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativevme.cpp b/src/declarative/qml/qdeclarativevme.cpp index 366c64b..2d551f2 100644 --- a/src/declarative/qml/qdeclarativevme.cpp +++ b/src/declarative/qml/qdeclarativevme.cpp @@ -938,7 +938,6 @@ QObject *QDeclarativeVME::run(QDeclarativeVMEStack<QObject *> &stack, QDeclarativeEnginePrivate::clear(bindValues); QDeclarativeEnginePrivate::clear(parserStatus); - ep->finalizedParserStatus.clear(); return 0; } |