summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/controls/Styles/Base/MenuBarStyle.qml2
-rw-r--r--src/controls/Styles/Base/TableViewStyle.qml2
-rw-r--r--src/controls/ToolButton.qml4
-rw-r--r--src/controls/qquickaction.cpp2
-rw-r--r--src/controls/qquickexclusivegroup.cpp2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/controls/Styles/Base/MenuBarStyle.qml b/src/controls/Styles/Base/MenuBarStyle.qml
index 050367c3..396f3541 100644
--- a/src/controls/Styles/Base/MenuBarStyle.qml
+++ b/src/controls/Styles/Base/MenuBarStyle.qml
@@ -113,7 +113,7 @@ Style {
/*! The style component for the menubar's own menus and their submenus.
- \sa MenuStyle
+ \sa {QtQuick.Controls.Styles::}{MenuStyle}
*/
property Component menuStyle: MenuStyle { }
}
diff --git a/src/controls/Styles/Base/TableViewStyle.qml b/src/controls/Styles/Base/TableViewStyle.qml
index 0c01cfee..bf8af48a 100644
--- a/src/controls/Styles/Base/TableViewStyle.qml
+++ b/src/controls/Styles/Base/TableViewStyle.qml
@@ -48,7 +48,7 @@ import QtQuick.Controls.Private 1.0
\ingroup viewsstyling
\brief Provides custom styling for TableView
- Note that this class derives from \l ScrollViewStyle
+ \note This class derives from \l {QtQuick.Controls.Styles::}{ScrollViewStyle}
and supports all of the properties defined there.
*/
ScrollViewStyle {
diff --git a/src/controls/ToolButton.qml b/src/controls/ToolButton.qml
index 0ff62ec4..24ca162c 100644
--- a/src/controls/ToolButton.qml
+++ b/src/controls/ToolButton.qml
@@ -49,8 +49,8 @@ import QtQuick.Controls.Private 1.0
\ingroup controls
\brief Provides a button type that is typically used within a ToolBar.
- ToolButton is functionally similar to \l Button, but can provide a look that is more
- suitable within a \l ToolBar.
+ ToolButton is functionally similar to \l {QtQuick.Controls::}{Button}, but
+ can provide a look that is more suitable within a \l ToolBar.
\code
ToolButton {
diff --git a/src/controls/qquickaction.cpp b/src/controls/qquickaction.cpp
index 541e9a5d..3d13f90b 100644
--- a/src/controls/qquickaction.cpp
+++ b/src/controls/qquickaction.cpp
@@ -66,7 +66,7 @@ QT_BEGIN_NAMESPACE
For example, in a word processor, if the user presses a Bold toolbar button, the Bold menu item will
automatically be checked.
- QtQuick Controls supports actions in \l Button, \l ToolButton, and \l MenuItem.
+ QtQuick Controls supports actions in \l {QtQuick.Controls::}{Button}, \l ToolButton, and \l MenuItem.
Example:
\qml
diff --git a/src/controls/qquickexclusivegroup.cpp b/src/controls/qquickexclusivegroup.cpp
index bf7a3844..7e991123 100644
--- a/src/controls/qquickexclusivegroup.cpp
+++ b/src/controls/qquickexclusivegroup.cpp
@@ -97,7 +97,7 @@ static bool isChecked(const QObject *o)
}
\endcode
- Several controls already support ExclusiveGroup, e.g. \l Action, \l MenuItem, \l Button, and \l RadioButton.
+ Several controls already support ExclusiveGroup, e.g. \l Action, \l MenuItem, \l {QtQuick.Controls::}{Button}, and \l RadioButton.
Since ExclusiveGroup only supports \l Action as child items, we need to manually assign the \c exclusiveGroup
property for other objects.