diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-08-24 00:07:31 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-08-24 00:07:31 (GMT) |
commit | 3170c89da80feb841b115db28a4dcf5ddadbbded (patch) | |
tree | b1d6554646ef530d561e7b825e53136ea288a4bd /doc/src/declarative/animation.qdoc | |
parent | a28f9a0204fcf7ab4ecf7546fc455f5db3aa7387 (diff) | |
download | Qt-3170c89da80feb841b115db28a4dcf5ddadbbded.zip Qt-3170c89da80feb841b115db28a4dcf5ddadbbded.tar.gz Qt-3170c89da80feb841b115db28a4dcf5ddadbbded.tar.bz2 |
fromState -> from, toState -> to for Transition.
Diffstat (limited to 'doc/src/declarative/animation.qdoc')
-rw-r--r-- | doc/src/declarative/animation.qdoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/declarative/animation.qdoc b/doc/src/declarative/animation.qdoc index 28a3c47..9554ad5 100644 --- a/doc/src/declarative/animation.qdoc +++ b/doc/src/declarative/animation.qdoc @@ -121,8 +121,8 @@ QML transitions can use selectors to determine which state changes a transition \code Transition { - fromState: "*" - toState: "Details" + from: "*" + to: "Details" ... } \endcode @@ -131,8 +131,8 @@ Transitions can happen in parallel, in sequence, or in any combination of the tw \code Transition { - fromState: "*" - toState: "MyState" + from: "*" + to: "MyState" reversible: true SequentialAnimation { ColorAnimation { |