summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/Loading.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/snow/Loading.qml')
-rw-r--r--examples/declarative/snow/Loading.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/snow/Loading.qml b/examples/declarative/snow/Loading.qml
index ff2c829..054656a 100644
--- a/examples/declarative/snow/Loading.qml
+++ b/examples/declarative/snow/Loading.qml
@@ -1,8 +1,8 @@
import Qt 4.6
Image {
- id: Loading; source: "pics/loading.png"; transformOrigin: "Center"
+ id: loading; source: "pics/loading.png"; transformOrigin: "Center"
rotation: NumberAnimation {
- id: "RotationAnimation"; from: 0; to: 360; running: Loading.visible == true; repeat: true; duration: 900
+ id: rotationAnimation; from: 0; to: 360; running: loading.visible == true; repeat: true; duration: 900
}
}