summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/animations/data/badproperty1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/animations/data/badproperty1.qml')
-rw-r--r--tests/auto/declarative/animations/data/badproperty1.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/declarative/animations/data/badproperty1.qml b/tests/auto/declarative/animations/data/badproperty1.qml
index fda322c..d31cae9 100644
--- a/tests/auto/declarative/animations/data/badproperty1.qml
+++ b/tests/auto/declarative/animations/data/badproperty1.qml
@@ -1,21 +1,21 @@
import Qt 4.6
Rectangle {
- id: Wrapper
+ id: wrapper
width: 240
height: 320
Rectangle {
- id: MyRect
+ id: myRect
color: "red"
width: 50; height: 50
x: 100; y: 100
}
states: State {
name: "state1"
- PropertyChanges { target: MyRect; border.color: "blue" }
+ PropertyChanges { target: myRect; border.color: "blue" }
}
transitions: Transition {
- ColorAnimation { target: MyRect; to: "red"; property: "border.colr"; duration: 1000 }
+ ColorAnimation { target: myRect; to: "red"; property: "border.colr"; duration: 1000 }
}
- Component.onCompleted: if (Wrapper.state == "state1") Wrapper.state = ""; else Wrapper.state = "state1";
+ Component.onCompleted: if (wrapper.state == "state1") wrapper.state = ""; else wrapper.state = "state1";
}