summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/tutorial2.qdoc
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-04-23 12:40:23 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-04-23 12:40:23 (GMT)
commit0967c3267fd533a9fa092553d30a0baf06aafb60 (patch)
tree745a913b7236c78df0d3c3f7b398c544879308b2 /doc/src/declarative/tutorial2.qdoc
parent7f4c36b07da085549bdc93c65e6b839a43877b0b (diff)
downloadQt-0967c3267fd533a9fa092553d30a0baf06aafb60.zip
Qt-0967c3267fd533a9fa092553d30a0baf06aafb60.tar.gz
Qt-0967c3267fd533a9fa092553d30a0baf06aafb60.tar.bz2
qdoc: Edited the documentation to remove numerous qdoc warnings.
Diffstat (limited to 'doc/src/declarative/tutorial2.qdoc')
-rw-r--r--doc/src/declarative/tutorial2.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/tutorial2.qdoc b/doc/src/declarative/tutorial2.qdoc
index 8898e68..db846b8 100644
--- a/doc/src/declarative/tutorial2.qdoc
+++ b/doc/src/declarative/tutorial2.qdoc
@@ -53,7 +53,7 @@ The root element of our component is an \c Item. It is the most basic 'Fx' eleme
</properties>
\endcode
-We declare a \c color property. This property is accessible from \i outside our component, this allows us to instantiate the cells with different colors.
+We declare a \c color property. This property is accessible from \e outside our component, this allows us to instantiate the cells with different colors.
\code
<Rect anchors.fill="{parent}" color="{CellContainer.color}"/>
@@ -71,7 +71,7 @@ We bind the \c color property of this \c Rect to the color property of our compo
In order to change the color of the text when clicking on a cell, we create a \c MouseRegion element with the same size as its parent.
-The \c onClick property sets the \c color property of the element named \i HelloText to our cell color.
+The \c onClick property sets the \c color property of the element named \e HelloText to our cell color.
\section2 The main QML file