diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-11-09 07:00:19 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-11-09 07:00:19 (GMT) |
commit | 05fe93e4992c4f1715f469ccb36f426bfd40dc22 (patch) | |
tree | 55e291cf31ae7cb37f8e57d1840009c397649be2 /doc/src | |
parent | b217b36ca4af47b1a47c82da602b7fd6c384d9c6 (diff) | |
parent | 813cf7f88015680206aafb1d9dfd05900e64abbd (diff) | |
download | Qt-05fe93e4992c4f1715f469ccb36f426bfd40dc22.zip Qt-05fe93e4992c4f1715f469ccb36f426bfd40dc22.tar.gz Qt-05fe93e4992c4f1715f469ccb36f426bfd40dc22.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/declarative/tutorial2.qdoc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/src/declarative/tutorial2.qdoc b/doc/src/declarative/tutorial2.qdoc index ac63d9b..b198bc5 100644 --- a/doc/src/declarative/tutorial2.qdoc +++ b/doc/src/declarative/tutorial2.qdoc @@ -11,6 +11,7 @@ To avoid writing the same code multiple times, we first create a new \c Cell com A component provides a way of defining a new type that we can re-use in other QML files. A QML component is like a black-box and interacts with the outside world through properties, signals and slots and is generally defined in its own QML file (for more details, see \l components). +The component's filename must always start with a capital letter. Here is the QML code for \c Cell.qml: |