summaryrefslogtreecommitdiffstats
path: root/demos/declarative/twitter
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-02-18 05:14:36 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-02-18 05:17:16 (GMT)
commitf9cf46d7198a47cbe50bcbf315b9d0718439086b (patch)
tree5a14df43ebd6d6c92d89477fe70a6431c6aa71e0 /demos/declarative/twitter
parentb800e5a8803f2b39c0b8dce5a9509503672148d5 (diff)
downloadQt-f9cf46d7198a47cbe50bcbf315b9d0718439086b.zip
Qt-f9cf46d7198a47cbe50bcbf315b9d0718439086b.tar.gz
Qt-f9cf46d7198a47cbe50bcbf315b9d0718439086b.tar.bz2
Fix example after introduction of RotationAnimation.
id can't be the same as a TypeName.
Diffstat (limited to 'demos/declarative/twitter')
-rw-r--r--demos/declarative/twitter/content/Loading.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/declarative/twitter/content/Loading.qml b/demos/declarative/twitter/content/Loading.qml
index 8b22e70..3151415 100644
--- a/demos/declarative/twitter/content/Loading.qml
+++ b/demos/declarative/twitter/content/Loading.qml
@@ -3,6 +3,6 @@ import Qt 4.6
Image {
id: loading; source: "images/loading.png"; transformOrigin: "Center"
rotation: NumberAnimation {
- id: "RotationAnimation"; from: 0; to: 360; running: loading.visible == true; repeat: true; duration: 900
+ from: 0; to: 360; running: loading.visible == true; repeat: true; duration: 900
}
}