summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/Package_Views/packageviews.qml
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-02-23 05:46:14 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-02-23 06:29:52 (GMT)
commiteefe993a4241b48f14991c44baa2c074b10bc194 (patch)
treea1a6ecdeb90c17707839c9c5e9cb8776ec4ff97f /tests/auto/declarative/visual/Package_Views/packageviews.qml
parentf8eee22dcdd9b6b530c0e5c346e16552352ec03b (diff)
parente988763395625171bed001b5916d4da003d39aee (diff)
downloadQt-eefe993a4241b48f14991c44baa2c074b10bc194.zip
Qt-eefe993a4241b48f14991c44baa2c074b10bc194.tar.gz
Qt-eefe993a4241b48f14991c44baa2c074b10bc194.tar.bz2
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml
Diffstat (limited to 'tests/auto/declarative/visual/Package_Views/packageviews.qml')
-rw-r--r--tests/auto/declarative/visual/Package_Views/packageviews.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/visual/Package_Views/packageviews.qml b/tests/auto/declarative/visual/Package_Views/packageviews.qml
index c8016b6..b577e45 100644
--- a/tests/auto/declarative/visual/Package_Views/packageviews.qml
+++ b/tests/auto/declarative/visual/Package_Views/packageviews.qml
@@ -29,14 +29,14 @@ Rectangle {
delegate: Package {
Rectangle {
id: listItem; Package.name: "list"; width:root.width/2; height: 50; color: "transparent"; border.color: "white"
- MouseRegion {
+ MouseArea {
anchors.fill: parent
onClicked: myState.state = myState.state == "list" ? "grid" : "list"
}
}
Rectangle {
id: gridItem; Package.name: "grid"; width:50; height: 50; color: "transparent"; border.color: "white"
- MouseRegion {
+ MouseArea {
anchors.fill: parent
onClicked: myState.state = myState.state == "list" ? "grid" : "list"
}
@@ -64,7 +64,7 @@ Rectangle {
from: "*"; to: "*"
SequentialAnimation {
ParentAction{}
- NumberAnimation { matchProperties: "x,y,width"; easing: "easeInOutQuad" }
+ NumberAnimation { properties: "x,y,width"; easing: "easeInOutQuad" }
}
}
]