diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-10-22 06:10:31 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-10-22 06:10:31 (GMT) |
commit | a477ea20364da0b0c363b02084adf3c5eff843b1 (patch) | |
tree | 2f32d0c74c1dc09c583f4fa50707e867a2a9c160 /src/declarative/qml/qmlcomponent.cpp | |
parent | 9e9c979affd1ce76a07c6545c25d2851c7964a7c (diff) | |
download | Qt-a477ea20364da0b0c363b02084adf3c5eff843b1.zip Qt-a477ea20364da0b0c363b02084adf3c5eff843b1.tar.gz Qt-a477ea20364da0b0c363b02084adf3c5eff843b1.tar.bz2 |
change all ids in doc examples to start with lower case.
Diffstat (limited to 'src/declarative/qml/qmlcomponent.cpp')
-rw-r--r-- | src/declarative/qml/qmlcomponent.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlcomponent.cpp b/src/declarative/qml/qmlcomponent.cpp index dc71989..0c85574 100644 --- a/src/declarative/qml/qmlcomponent.cpp +++ b/src/declarative/qml/qmlcomponent.cpp @@ -84,15 +84,15 @@ int statusId = qRegisterMetaType<QmlComponent::Status>("QmlComponent::Status"); \qml Item { Component { - id: RedSquare + id: redSquare Rectangle { color: "red" width: 10 height: 10 } } - Loader { sourceComponent: RedSquare } - Loader { sourceComponent: RedSquare; x: 20 } + Loader { sourceComponent: redSquare } + Loader { sourceComponent: redSquare; x: 20 } } \endqml |