summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clock
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/clock
parentb9663faad39ae02b7dbee9f2cea7dce7d25894f8 (diff)
downloadQt-43199af242918b3c77bb47bdcc3ec60f8236b0d3.zip
Qt-43199af242918b3c77bb47bdcc3ec60f8236b0d3.tar.gz
Qt-43199af242918b3c77bb47bdcc3ec60f8236b0d3.tar.bz2
lowercase ids
Diffstat (limited to 'examples/declarative/clock')
-rw-r--r--examples/declarative/clock/Clock.qml16
-rw-r--r--examples/declarative/clock/display.qml2
2 files changed, 9 insertions, 9 deletions
diff --git a/examples/declarative/clock/Clock.qml b/examples/declarative/clock/Clock.qml
index 6064dd4..a061488 100644
--- a/examples/declarative/clock/Clock.qml
+++ b/examples/declarative/clock/Clock.qml
@@ -1,7 +1,7 @@
import Qt 4.6
Item {
- id: Clock
+ id: clock
width: 200; height: 200
property var time
property var hours
@@ -15,7 +15,7 @@ Item {
}
Timer {
interval: 100; running: true; repeat: true; triggeredOnStart: true
- onTriggered: Clock.time = new Date()
+ onTriggered: clock.time = new Date()
}
Image { source: "background.png" }
@@ -25,13 +25,13 @@ Item {
source: "hour.png"
smooth: true
transform: Rotation {
- id: HourRotation
+ id: hourRotation
origin.x: 4; origin.y: 45
angle: 0
angle: SpringFollow {
spring: 2
damping: .2
- source: Clock.hours * 50 * 3 + Clock.minutes / 2
+ source: clock.hours * 50 * 3 + clock.minutes / 2
}
}
}
@@ -41,13 +41,13 @@ Item {
source: "minute.png"
smooth: true
transform: Rotation {
- id: MinuteRotation
+ id: minuteRotation
origin.x: 4; origin.y: 70
angle: 0
angle: SpringFollow {
spring: 2
damping: .2
- source: Clock.minutes * 6
+ source: clock.minutes * 6
}
}
}
@@ -57,14 +57,14 @@ Item {
source: "second.png"
smooth: true
transform: Rotation {
- id: SecondRotation
+ id: secondRotation
origin.x: 2; origin.y: 60
angle: 0
angle: SpringFollow {
spring: 5
damping: .25
modulus: 360
- source: Clock.seconds * 6
+ source: clock.seconds * 6
}
}
}
diff --git a/examples/declarative/clock/display.qml b/examples/declarative/clock/display.qml
index 59f4763..20e254d 100644
--- a/examples/declarative/clock/display.qml
+++ b/examples/declarative/clock/display.qml
@@ -3,5 +3,5 @@ import Qt 4.6
Rectangle {
width: childrenRect.width
height: childrenRect.height
- Clock { id: Clock }
+ Clock { id: clock }
}