summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/basicExtension.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/states/data/basicExtension.qml')
-rw-r--r--tests/auto/declarative/states/data/basicExtension.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/declarative/states/data/basicExtension.qml b/tests/auto/declarative/states/data/basicExtension.qml
index 230e00b..1836f8a 100644
--- a/tests/auto/declarative/states/data/basicExtension.qml
+++ b/tests/auto/declarative/states/data/basicExtension.qml
@@ -1,16 +1,16 @@
import Qt 4.6
Rectangle {
- id: MyRectangle
+ id: myRectangle
width: 100; height: 100
color: "red"
states: [
State {
name: "blue"
- PropertyChanges { target: MyRectangle; color: "blue" }
+ PropertyChanges { target: myRectangle; color: "blue" }
},
State {
name: "bordered"
extend: "blue"
- PropertyChanges { target: MyRectangle; border.width: 2 }
+ PropertyChanges { target: myRectangle; border.width: 2 }
}]
-} \ No newline at end of file
+}