summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-11-06 01:05:50 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-11-06 01:05:50 (GMT)
commitcf6bc08676638b01c0f8a40e001b8fb303aaa5f5 (patch)
treeda68908c51ad09e4d4c721018f34c06cb7a8dc45 /demos/declarative/flickr
parent2ba1454ff6e3468f8871d2de3afbef8f80b3da07 (diff)
downloadQt-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.qml2
-rw-r--r--demos/declarative/flickr/mobile/GridDelegate.qml2
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" }
}
}
]