aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/quick/text/doc/src/text.qdoc2
-rw-r--r--src/quick/items/qquicktext.cpp2
-rw-r--r--src/quick/items/qquicktextedit.cpp2
-rw-r--r--src/quick/items/qquicktextinput.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/quick/text/doc/src/text.qdoc b/examples/quick/text/doc/src/text.qdoc
index 7ac33da563..ea6a786e8a 100644
--- a/examples/quick/text/doc/src/text.qdoc
+++ b/examples/quick/text/doc/src/text.qdoc
@@ -60,7 +60,7 @@
\section1 Available Fonts
- \e{Available Fonts} shows how to use the QML \l{QtQml::Qt}{Qt} global object
+ \e{Available Fonts} shows how to use the \l [QML] {Qt} global object
and a list view to display all the fonts available on the system.
The \l ListView type uses the list of fonts available as its model:
\snippet text/fonts/availableFonts.qml model
diff --git a/src/quick/items/qquicktext.cpp b/src/quick/items/qquicktext.cpp
index 924c455872..e7dcc73ddb 100644
--- a/src/quick/items/qquicktext.cpp
+++ b/src/quick/items/qquicktext.cpp
@@ -1451,7 +1451,7 @@ QQuickText::~QQuickText()
Sets the style name of the font.
The style name is case insensitive. If set, the font will be matched against style name instead
- of the font properties \l weight, \l bold and \l italic.
+ of the font properties \l font.weight, \l font.bold and \l font.italic.
*/
/*!
diff --git a/src/quick/items/qquicktextedit.cpp b/src/quick/items/qquicktextedit.cpp
index 0a26f0119f..5523beb72a 100644
--- a/src/quick/items/qquicktextedit.cpp
+++ b/src/quick/items/qquicktextedit.cpp
@@ -212,7 +212,7 @@ QString QQuickTextEdit::text() const
Sets the style name of the font.
The style name is case insensitive. If set, the font will be matched against style name instead
- of the font properties \l weight, \l bold and \l italic.
+ of the font properties \l font.weight, \l font.bold and \l font.italic.
*/
diff --git a/src/quick/items/qquicktextinput.cpp b/src/quick/items/qquicktextinput.cpp
index 041baa4199..d69c489b2d 100644
--- a/src/quick/items/qquicktextinput.cpp
+++ b/src/quick/items/qquicktextinput.cpp
@@ -235,7 +235,7 @@ QString QQuickTextInputPrivate::realText() const
Sets the style name of the font.
The style name is case insensitive. If set, the font will be matched against style name instead
- of the font properties \l weight, \l bold and \l italic.
+ of the font properties \l font.weight, \l font.bold and \l font.italic.
*/
/*!