summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-21 04:33:38 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-21 04:33:38 (GMT)
commit8598114e3379df3a73d4ccc7760e3761ed55edf0 (patch)
tree9c8da15646795f34a194a7aa5485dce95dcd40e0 /demos
parentbc5b2b8ea1259bffdbdafe9d509fc675476fdb97 (diff)
downloadQt-8598114e3379df3a73d4ccc7760e3761ed55edf0.zip
Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.tar.gz
Qt-8598114e3379df3a73d4ccc7760e3761ed55edf0.tar.bz2
SetPropertyAction -> PropertyAction
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/flickr/content/ImageDetails.qml4
-rw-r--r--demos/declarative/flickr/flickr.qml2
-rw-r--r--demos/declarative/flickr/flickr2.qml6
-rw-r--r--demos/declarative/webbrowser/webbrowser.qml4
4 files changed, 8 insertions, 8 deletions
diff --git a/demos/declarative/flickr/content/ImageDetails.qml b/demos/declarative/flickr/content/ImageDetails.qml
index 5db1e99..8098273 100644
--- a/demos/declarative/flickr/content/ImageDetails.qml
+++ b/demos/declarative/flickr/content/ImageDetails.qml
@@ -143,13 +143,13 @@ Flipable {
transitions: [
Transition {
SequentialAnimation {
- SetPropertyAction {
+ PropertyAction {
target: BigImage
property: "smooth"
value: false
}
NumberAnimation { easing: "easeInOutQuad"; properties: "angle"; duration: 500 }
- SetPropertyAction {
+ PropertyAction {
target: BigImage
property: "smooth"
value: !Flick.moving
diff --git a/demos/declarative/flickr/flickr.qml b/demos/declarative/flickr/flickr.qml
index 06a2698..d3c1a48 100644
--- a/demos/declarative/flickr/flickr.qml
+++ b/demos/declarative/flickr/flickr.qml
@@ -109,7 +109,7 @@ Item {
SequentialAnimation {
ParentAction { }
NumberAnimation { properties: "x,y,scale,opacity,angle"; duration: 500; easing: "easeInOutQuad" }
- SetPropertyAction { target: Wrapper; properties: "z" }
+ PropertyAction { target: Wrapper; properties: "z" }
}
}
]
diff --git a/demos/declarative/flickr/flickr2.qml b/demos/declarative/flickr/flickr2.qml
index c4af5df..0bdbaaf 100644
--- a/demos/declarative/flickr/flickr2.qml
+++ b/demos/declarative/flickr/flickr2.qml
@@ -108,7 +108,7 @@ Item {
SequentialAnimation {
ParentAction { }
NumberAnimation { properties: "x,y,scale,opacity,angle"; duration: 500; easing: "easeInOutQuad" }
- SetPropertyAction { target: Wrapper; properties: "z" }
+ PropertyAction { target: Wrapper; properties: "z" }
}
}
]
@@ -142,7 +142,7 @@ Item {
Transition {
toState: "pathView"
SequentialAnimation {
- SetPropertyAction { target: Wrapper; property: "moveToParent" }
+ PropertyAction { target: Wrapper; property: "moveToParent" }
ParallelAnimation {
NumberAnimation {
target: Wrapper
@@ -159,7 +159,7 @@ Item {
toState: "gridView"
SequentialAnimation {
PauseAnimation { duration: Math.floor(index/7)*100 }
- SetPropertyAction { target: Wrapper; property: "moveToParent" }
+ PropertyAction { target: Wrapper; property: "moveToParent" }
ParallelAnimation {
NumberAnimation {
target: Wrapper
diff --git a/demos/declarative/webbrowser/webbrowser.qml b/demos/declarative/webbrowser/webbrowser.qml
index 2e57c72..232871f 100644
--- a/demos/declarative/webbrowser/webbrowser.qml
+++ b/demos/declarative/webbrowser/webbrowser.qml
@@ -353,7 +353,7 @@ Item {
transitions: [
Transition {
SequentialAnimation {
- SetPropertyAction {
+ PropertyAction {
target: MyWebView
property: "smooth"
value: false
@@ -372,7 +372,7 @@ Item {
duration: 200
}
}
- SetPropertyAction {
+ PropertyAction {
target: MyWebView
property: "smooth"
value: !Flick.moving