summaryrefslogtreecommitdiffstats
path: root/examples/declarative/animations/easing.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/animations/easing.qml')
-rw-r--r--examples/declarative/animations/easing.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/animations/easing.qml b/examples/declarative/animations/easing.qml
index a9ba05f..59e9b17 100644
--- a/examples/declarative/animations/easing.qml
+++ b/examples/declarative/animations/easing.qml
@@ -80,8 +80,8 @@ Rectangle {
transitions: Transition {
ParallelAnimation {
- NumberAnimation { matchProperties: "x"; easing: type; duration: 1000 }
- ColorAnimation { matchProperties: "color"; easing: type; duration: 1000 }
+ NumberAnimation { properties: "x"; easing: type; duration: 1000 }
+ ColorAnimation { properties: "color"; easing: type; duration: 1000 }
}
}
}