summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-02-16 14:21:10 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-02-16 14:21:10 (GMT)
commitb92dd64af875d62bf4f64097dedaa0b2224304db (patch)
treec2f0c89aff2e0789850ac5b4435e589a48279667 /doc/src/declarative
parent386ec93553759b2f15acc8f3f40badae759df0a0 (diff)
downloadQt-b92dd64af875d62bf4f64097dedaa0b2224304db.zip
Qt-b92dd64af875d62bf4f64097dedaa0b2224304db.tar.gz
Qt-b92dd64af875d62bf4f64097dedaa0b2224304db.tar.bz2
doc: Fixed some qdoc errors.
Diffstat (limited to 'doc/src/declarative')
-rw-r--r--doc/src/declarative/qmlintro.qdoc1
-rw-r--r--doc/src/declarative/qtprogrammers.qdoc2
-rw-r--r--doc/src/declarative/tutorial1.qdoc2
3 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/declarative/qmlintro.qdoc b/doc/src/declarative/qmlintro.qdoc
index 494c4c7..0a503d7 100644
--- a/doc/src/declarative/qmlintro.qdoc
+++ b/doc/src/declarative/qmlintro.qdoc
@@ -266,6 +266,7 @@ State {
because \c changes is the default property of the \c State type.
\section2 Grouped Properties
+\target dot properties
In some cases properties form a logical group and use a 'dot' or grouped notation
to show this.
diff --git a/doc/src/declarative/qtprogrammers.qdoc b/doc/src/declarative/qtprogrammers.qdoc
index 467a4df..a203662 100644
--- a/doc/src/declarative/qtprogrammers.qdoc
+++ b/doc/src/declarative/qtprogrammers.qdoc
@@ -58,7 +58,7 @@ an application with a UI defined in QML also uses Qt for all the non-UI logic.
QML provides direct access to the following concepts from Qt:
\list
- \o QAction - the \l {basicqmlaction}{action} type
+ \o QAction - the \l {QML Basic Types}{action} type
\o QObject signals and slots - available as functions to call in JavaScript
\o QObject properties - available as variables in JavaScript
\o QWidget - QmlView is a QML-displaying widget
diff --git a/doc/src/declarative/tutorial1.qdoc b/doc/src/declarative/tutorial1.qdoc
index 5f300e0..b89c74a 100644
--- a/doc/src/declarative/tutorial1.qdoc
+++ b/doc/src/declarative/tutorial1.qdoc
@@ -78,7 +78,7 @@ We add a \l Text element as a child of our root element that will display the te
The \c y property is used to position the text vertically at 30 pixels from the top of its parent.
-The \c font.pointSize and \c font.bold properties are related to fonts and use the \l{Dot Properties}{dot notation}.
+The \c font.pointSize and \c font.bold properties are related to fonts and use the \l{dot properties}{dot notation}.
The \c anchors.horizontalCenter property refers to the horizontal center of an element.
In this case, we specify that our text element should be horizontally centered in the \e page element (see \l{anchor-layout}{Anchor-based Layout}).