summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2009-11-09 07:22:04 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2009-11-09 07:22:04 (GMT)
commit42d6369f9e058720e35aaf3960067333c59caac5 (patch)
tree1758935fb9777ac94b1282e498b94f5449dbe9b1 /doc/src
parent05fe93e4992c4f1715f469ccb36f426bfd40dc22 (diff)
parentdbbe24f0f04e5a0aaf9223b73bee873e208a1fa7 (diff)
downloadQt-42d6369f9e058720e35aaf3960067333c59caac5.zip
Qt-42d6369f9e058720e35aaf3960067333c59caac5.tar.gz
Qt-42d6369f9e058720e35aaf3960067333c59caac5.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.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/declarative/tutorial2.qdoc b/doc/src/declarative/tutorial2.qdoc
index b198bc5..dd0d428 100644
--- a/doc/src/declarative/tutorial2.qdoc
+++ b/doc/src/declarative/tutorial2.qdoc
@@ -10,7 +10,7 @@ Our color picker is made of six cells with different colors.
To avoid writing the same code multiple times, we first create a new \c Cell component.
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).
+defined in its own QML file (for more details, see \l {Defining new Components}).
The component's filename must always start with a capital letter.
Here is the QML code for \c Cell.qml: