summaryrefslogtreecommitdiff
path: root/doc/src/qtquick/qtquick-components.qdoc
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2016-11-28 12:35:05 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2016-11-28 12:53:49 +0000
commit8399fe1416d18fe55f29ae610217a3f1eefb9f41 (patch)
tree4878491897d9c0c6aa21fb26ee820415dd4159d5 /doc/src/qtquick/qtquick-components.qdoc
parentbf8f998b5e2cec49a6db29016546b52c637d847e (diff)
downloadqt-creator-8399fe1416d18fe55f29ae610217a3f1eefb9f41.tar.gz
Doc: Fix ambiguous links
Use the [QML] specifier to make sure that the links lead to QML type documentation. Change-Id: I93afda14a72cdfe5e941378e332f66bdfe131352 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
Diffstat (limited to 'doc/src/qtquick/qtquick-components.qdoc')
-rw-r--r--doc/src/qtquick/qtquick-components.qdoc14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/qtquick/qtquick-components.qdoc b/doc/src/qtquick/qtquick-components.qdoc
index 264a3640f5..b857c4ee0f 100644
--- a/doc/src/qtquick/qtquick-components.qdoc
+++ b/doc/src/qtquick/qtquick-components.qdoc
@@ -48,28 +48,28 @@
\list
- \li \l{BorderImage} uses an image as a border or background.
+ \li \l [QML]{BorderImage}{Border Image} uses an image as a border or background.
- \li \l{Image}
+ \li \l [QML]{Image}
adds a bitmap to the scene. You can stretch and tile images.
- \li \l{Item}
+ \li \l [QML]{Item}
is the most basic of all visual types in QML. Even though it has no
visual appearance, it defines all the properties that are common
across visual types, such as the x and y position, width and height,
anchoring, and key handling.
- \li \l{Rectangle}
+ \li \l [QML]{Rectangle}
adds a rectangle that is painted with a solid fill color and an
optional border. You can also use the radius property to create
rounded rectangles.
- \li \l{Text} adds formatted read-only text.
+ \li \l [QML]{Text} adds formatted read-only text.
- \li \l{TextEdit}
+ \li \l [QML]{TextEdit}{Text Edit}
adds a single line of editable formatted text that can be validated.
- \li \l{TextInput}
+ \li \l [QML]{TextInput}{Text Input}
adds a single line of editable plain text that can be validated.
\omit