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 /examples/declarative/tutorials/helloworld | |
parent | a28f9a0204fcf7ab4ecf7546fc455f5db3aa7387 (diff) | |
download | Qt-3170c89da80feb841b115db28a4dcf5ddadbbded.zip Qt-3170c89da80feb841b115db28a4dcf5ddadbbded.tar.gz Qt-3170c89da80feb841b115db28a4dcf5ddadbbded.tar.bz2 |
fromState -> from, toState -> to for Transition.
Diffstat (limited to 'examples/declarative/tutorials/helloworld')
-rw-r--r-- | examples/declarative/tutorials/helloworld/t3/tutorial3.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml index b652eac..daf32d5 100644 --- a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml +++ b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml @@ -25,8 +25,8 @@ Rectangle { ] transitions: [ Transition { - fromState: "*" - toState: "down" + from: "*" + to: "down" reversible: true ParallelAnimation { NumberAnimation { |