diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-08-21 04:33:38 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-08-21 04:33:38 (GMT) |
commit | 8598114e3379df3a73d4ccc7760e3761ed55edf0 (patch) | |
tree | 9c8da15646795f34a194a7aa5485dce95dcd40e0 /examples/declarative/fillmode | |
parent | bc5b2b8ea1259bffdbdafe9d509fc675476fdb97 (diff) | |
download | Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.zip Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.tar.gz Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.tar.bz2 |
SetPropertyAction -> PropertyAction
Diffstat (limited to 'examples/declarative/fillmode')
-rw-r--r-- | examples/declarative/fillmode/fillmode.qml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/examples/declarative/fillmode/fillmode.qml b/examples/declarative/fillmode/fillmode.qml index de60b28..94b0782 100644 --- a/examples/declarative/fillmode/fillmode.qml +++ b/examples/declarative/fillmode/fillmode.qml @@ -7,23 +7,23 @@ Image { fillMode: SequentialAnimation { running: true repeat: true - SetPropertyAction { value: "Stretch" } - SetPropertyAction { target: Label; property: "text"; value: "Stretch" } + PropertyAction { value: "Stretch" } + PropertyAction { target: Label; property: "text"; value: "Stretch" } PauseAnimation { duration: 1000 } - SetPropertyAction { value: "PreserveAspectFit" } - SetPropertyAction { target: Label; property: "text"; value: "PreserveAspectFit" } + PropertyAction { value: "PreserveAspectFit" } + PropertyAction { target: Label; property: "text"; value: "PreserveAspectFit" } PauseAnimation { duration: 1000 } - SetPropertyAction { value: "PreserveAspectCrop" } - SetPropertyAction { target: Label; property: "text"; value: "PreserveAspectCrop" } + PropertyAction { value: "PreserveAspectCrop" } + PropertyAction { target: Label; property: "text"; value: "PreserveAspectCrop" } PauseAnimation { duration: 1000 } - SetPropertyAction { value: "Tile" } - SetPropertyAction { target: Label; property: "text"; value: "Tile" } + PropertyAction { value: "Tile" } + PropertyAction { target: Label; property: "text"; value: "Tile" } PauseAnimation { duration: 1000 } - SetPropertyAction { value: "TileHorizontally" } - SetPropertyAction { target: Label; property: "text"; value: "TileHorizontally" } + PropertyAction { value: "TileHorizontally" } + PropertyAction { target: Label; property: "text"; value: "TileHorizontally" } PauseAnimation { duration: 1000 } - SetPropertyAction { value: "TileVertically" } - SetPropertyAction { target: Label; property: "text"; value: "TileVertically" } + PropertyAction { value: "TileVertically" } + PropertyAction { target: Label; property: "text"; value: "TileVertically" } PauseAnimation { duration: 1000 } } Text { |