summaryrefslogtreecommitdiffstats
path: root/examples/declarative/fillmode
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-06 04:05:40 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-06 04:05:40 (GMT)
commit43199af242918b3c77bb47bdcc3ec60f8236b0d3 (patch)
tree94293b06614afbd3a2a89004204a23e7228a3d51 /examples/declarative/fillmode
parentb9663faad39ae02b7dbee9f2cea7dce7d25894f8 (diff)
downloadQt-43199af242918b3c77bb47bdcc3ec60f8236b0d3.zip
Qt-43199af242918b3c77bb47bdcc3ec60f8236b0d3.tar.gz
Qt-43199af242918b3c77bb47bdcc3ec60f8236b0d3.tar.bz2
lowercase ids
Diffstat (limited to 'examples/declarative/fillmode')
-rw-r--r--examples/declarative/fillmode/fillmode.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/declarative/fillmode/fillmode.qml b/examples/declarative/fillmode/fillmode.qml
index 94b0782..0fdacbf 100644
--- a/examples/declarative/fillmode/fillmode.qml
+++ b/examples/declarative/fillmode/fillmode.qml
@@ -8,26 +8,26 @@ Image {
running: true
repeat: true
PropertyAction { value: "Stretch" }
- PropertyAction { target: Label; property: "text"; value: "Stretch" }
+ PropertyAction { target: label; property: "text"; value: "Stretch" }
PauseAnimation { duration: 1000 }
PropertyAction { value: "PreserveAspectFit" }
- PropertyAction { target: Label; property: "text"; value: "PreserveAspectFit" }
+ PropertyAction { target: label; property: "text"; value: "PreserveAspectFit" }
PauseAnimation { duration: 1000 }
PropertyAction { value: "PreserveAspectCrop" }
- PropertyAction { target: Label; property: "text"; value: "PreserveAspectCrop" }
+ PropertyAction { target: label; property: "text"; value: "PreserveAspectCrop" }
PauseAnimation { duration: 1000 }
PropertyAction { value: "Tile" }
- PropertyAction { target: Label; property: "text"; value: "Tile" }
+ PropertyAction { target: label; property: "text"; value: "Tile" }
PauseAnimation { duration: 1000 }
PropertyAction { value: "TileHorizontally" }
- PropertyAction { target: Label; property: "text"; value: "TileHorizontally" }
+ PropertyAction { target: label; property: "text"; value: "TileHorizontally" }
PauseAnimation { duration: 1000 }
PropertyAction { value: "TileVertically" }
- PropertyAction { target: Label; property: "text"; value: "TileVertically" }
+ PropertyAction { target: label; property: "text"; value: "TileVertically" }
PauseAnimation { duration: 1000 }
}
Text {
- id: Label
+ id: label
font.pointSize: 24
color: "blue"
style: "Outline"