diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-11-06 01:05:50 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-11-06 01:05:50 (GMT) |
commit | cf6bc08676638b01c0f8a40e001b8fb303aaa5f5 (patch) | |
tree | da68908c51ad09e4d4c721018f34c06cb7a8dc45 /demos/declarative/flickr | |
parent | 2ba1454ff6e3468f8871d2de3afbef8f80b3da07 (diff) | |
download | Qt-cf6bc08676638b01c0f8a40e001b8fb303aaa5f5.zip Qt-cf6bc08676638b01c0f8a40e001b8fb303aaa5f5.tar.gz Qt-cf6bc08676638b01c0f8a40e001b8fb303aaa5f5.tar.bz2 |
Update semantics of targets/properties and target/property.
This is in preparation for renaming targets -> matchTargets and
properties to matchProperties.
Diffstat (limited to 'demos/declarative/flickr')
-rw-r--r-- | demos/declarative/flickr/flickr-desktop.qml | 2 | ||||
-rw-r--r-- | demos/declarative/flickr/mobile/GridDelegate.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/flickr/flickr-desktop.qml b/demos/declarative/flickr/flickr-desktop.qml index 337f77c..6dd12eb 100644 --- a/demos/declarative/flickr/flickr-desktop.qml +++ b/demos/declarative/flickr/flickr-desktop.qml @@ -92,7 +92,7 @@ Item { SequentialAnimation { ParentAction { } NumberAnimation { properties: "x,y,scale,opacity,angle"; duration: 500; easing: "easeInOutQuad" } - PropertyAction { target: wrapper; properties: "z" } + PropertyAction { targets: wrapper; properties: "z" } } } ] diff --git a/demos/declarative/flickr/mobile/GridDelegate.qml b/demos/declarative/flickr/mobile/GridDelegate.qml index 9b9fb24..6c12896 100644 --- a/demos/declarative/flickr/mobile/GridDelegate.qml +++ b/demos/declarative/flickr/mobile/GridDelegate.qml @@ -62,7 +62,7 @@ SequentialAnimation { ParentAction { } NumberAnimation { properties: "x,y"; duration: 500; easing: "easeInOutQuad" } - PropertyAction { target: wrapper; properties: "z" } + PropertyAction { targets: wrapper; properties: "z" } } } ] |