summaryrefslogtreecommitdiffstats
path: root/demos/declarative/calculator/calculator.qml
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-08-21 03:27:52 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-08-21 03:27:52 (GMT)
commit08a4fffc4c93c324f95f5759c620287330c68d9d (patch)
tree4bced6b7c308f405ef021c1e006de65cfaaeaa1e /demos/declarative/calculator/calculator.qml
parent1d9ae86dda99d8f0eb4949d3779777e795eb52be (diff)
downloadQt-08a4fffc4c93c324f95f5759c620287330c68d9d.zip
Qt-08a4fffc4c93c324f95f5759c620287330c68d9d.tar.gz
Qt-08a4fffc4c93c324f95f5759c620287330c68d9d.tar.bz2
Rename State change elements.
SetProperties -> PropertyChanges RunScript -> StateChangeScript SetAnchors -> AnchorChanges
Diffstat (limited to 'demos/declarative/calculator/calculator.qml')
-rw-r--r--demos/declarative/calculator/calculator.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/demos/declarative/calculator/calculator.qml b/demos/declarative/calculator/calculator.qml
index fd5002b..24c3e69 100644
--- a/demos/declarative/calculator/calculator.qml
+++ b/demos/declarative/calculator/calculator.qml
@@ -111,13 +111,13 @@ Rectangle {
states: [
State {
name: "Advanced"; when: AdvancedCheckBox.toggled == true
- SetProperties { target: BasicButtons; x: 0 }
- SetProperties { target: SimpleOperations; y: 32 }
- SetProperties { target: Bksp; opacity: 1 }
- SetProperties { target: C; x: 69; width: 67 }
- SetProperties { target: AC; x: 138; width: 67 }
- SetProperties { target: Equals; width: 50 }
- SetProperties { target: AdvancedButtons; x: 210; opacity: 1 }
+ PropertyChanges { target: BasicButtons; x: 0 }
+ PropertyChanges { target: SimpleOperations; y: 32 }
+ PropertyChanges { target: Bksp; opacity: 1 }
+ PropertyChanges { target: C; x: 69; width: 67 }
+ PropertyChanges { target: AC; x: 138; width: 67 }
+ PropertyChanges { target: Equals; width: 50 }
+ PropertyChanges { target: AdvancedButtons; x: 210; opacity: 1 }
}
]