diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-11-09 04:09:14 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-11-09 04:09:14 (GMT) |
commit | 714a957a9144e6c4189dacf96132cf01bf9350e8 (patch) | |
tree | 003419120f0b1966b40b357edd6940d47f0b0ff1 /doc/src/declarative/tutorial2.qdoc | |
parent | 766251f5eb9af692f6cfc155471c4a58f5d5be3d (diff) | |
download | Qt-714a957a9144e6c4189dacf96132cf01bf9350e8.zip Qt-714a957a9144e6c4189dacf96132cf01bf9350e8.tar.gz Qt-714a957a9144e6c4189dacf96132cf01bf9350e8.tar.bz2 |
Doc
Diffstat (limited to 'doc/src/declarative/tutorial2.qdoc')
-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: |