aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2019-05-14 16:00:06 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2019-05-14 14:04:52 +0000
commit7ae91977c3bea806ffe962fdf5582252cd10e43a (patch)
tree29025eaa6fdba4b5a6798850c22b9251823e428e
parentdc5d55ed370b601d8ab8cc066fa4d8ab16d8e942 (diff)
Doc: Use [QtQuick] as module identifier for QDoc instead of [QML]
The latter does not seem to work, after all. Change-Id: Icade96a0810b73a85d35532d394c09f6f703a3a8 Reviewed-by: Martin Smith <martin.smith@qt.io>
-rw-r--r--doc/src/qtquick/qtquick-components.qdoc26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/src/qtquick/qtquick-components.qdoc b/doc/src/qtquick/qtquick-components.qdoc
index 36190f8106..4cee65201f 100644
--- a/doc/src/qtquick/qtquick-components.qdoc
+++ b/doc/src/qtquick/qtquick-components.qdoc
@@ -92,24 +92,24 @@
You can use the following QML types to create components:
\list
- \li \l [QML]{AnimatedImage}{Animated Image} provides a way to play
+ \li \l [QtQuick]{AnimatedImage}{Animated Image} provides a way to play
animations stored as images containing a series of frames, such
as those stored in GIF files.
- \li \l [QML]{BorderImage}{Border Image} uses an image as a border or
+ \li \l [QtQuick]{BorderImage}{Border Image} uses an image as a border or
background.
- \li \l [QML]{Image} adds a bitmap to the scene. You can stretch and
+ \li \l [QtQuick]{Image} adds a bitmap to the scene. You can stretch and
tile images.
- \li \l [QML]{Item} is the most basic of all visual types in QML. Even
+ \li \l [QtQuick]{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 [QML]{Rectangle} adds a rectangle that is painted with a solid
+ \li \l [QtQuick] {Rectangle} adds a rectangle that is painted with a solid
fill color and an optional border. You can use the radius property
to create rounded rectangles.
- \li \l [QML]{Text} adds formatted read-only text.
- \li \l [QML]{TextEdit}{Text Edit} adds a single line of editable
+ \li \l [QtQuick]{Text} adds formatted read-only text.
+ \li \l [QtQuick]{TextEdit}{Text Edit} adds a single line of editable
formatted text that can be validated.
- \li \l [QML]{TextInput}{Text Input} adds a single line of editable
+ \li \l [QtQuick]{TextInput}{Text Input} adds a single line of editable
plain text that can be validated.
\endlist
@@ -267,12 +267,12 @@
You can use the following positioners to arrange items in UIs:
\list
- \li \l[QML] {Column} arranges its child items vertically.
- \li \l[QML] {Row} arranges its child items horizontally.
- \li \l[QML] {Grid}
+ \li \l[QtQuick] {Column} arranges its child items vertically.
+ \li \l[QtQuick] {Row} arranges its child items horizontally.
+ \li \l[QtQuick] {Grid}
arranges its child items so that they are aligned in a grid and
are not overlapping.
- \li \l[QML] {Flow}
+ \li \l[QtQuick] {Flow}
arranges its child items side by side, wrapping as necessary.
\endlist
@@ -365,7 +365,7 @@
\li \l{FocusScope}{Focus Scope}
assists in keyboard focus handling when building reusable QML
components.
- \li \l [QML]{MouseArea}{Mouse Area} enables simple mouse handling.
+ \li \l [QtQuick]{MouseArea}{Mouse Area} enables simple mouse handling.
\endlist
Since Qt 5.7, you can also use the following \l{Qt Quick Controls} types