summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/anchor-layout.qdoc
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-08-26 04:45:56 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-08-26 04:45:56 (GMT)
commit2c89c36f1b5316ccb1d77b5e768fa3ec168a659f (patch)
treed5f2aff43158149559577c2c676c3985ad80d2a1 /doc/src/declarative/anchor-layout.qdoc
parent620a05f762b647ea70a2a42e8e7cf48033cb1381 (diff)
downloadQt-2c89c36f1b5316ccb1d77b5e768fa3ec168a659f.zip
Qt-2c89c36f1b5316ccb1d77b5e768fa3ec168a659f.tar.gz
Qt-2c89c36f1b5316ccb1d77b5e768fa3ec168a659f.tar.bz2
doc fixes
Diffstat (limited to 'doc/src/declarative/anchor-layout.qdoc')
-rw-r--r--doc/src/declarative/anchor-layout.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/anchor-layout.qdoc b/doc/src/declarative/anchor-layout.qdoc
index 6f047a4..60eefe0 100644
--- a/doc/src/declarative/anchor-layout.qdoc
+++ b/doc/src/declarative/anchor-layout.qdoc
@@ -1,13 +1,13 @@
/*!
\page anchor-layout.html
\target anchor-layout
-\title Anchor-based Layout
+\title Anchor-based Layout in QML
In addition to the more traditional \l Grid, \l Row, and \l Column, QML also provides a way to layout items using the concept of anchors. Each item can be thought of as having a set of 6 invisible "anchor lines": \e left, \e horizontalCenter, \e right, \e top, \e verticalCenter, and \e bottom.
\image edges_qml.png
-The Fx anchoring system allows you to define relationships between the anchor lines of different items. For example, you can write:
+The QML anchoring system allows you to define relationships between the anchor lines of different items. For example, you can write:
\code
Rectangle { id: Rect1; ... }