summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2014-03-25 20:34:52 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-27 15:38:41 +0100
commitcff094ae801425a7da43f80af15c7ead8c4afcac (patch)
tree3668a6c2aeb31cfe8312c07f991a52878317efab
parent873aefef6f0f14166b31999f7041e9b8bc191575 (diff)
downloadqtquickcontrols-cff094ae801425a7da43f80af15c7ead8c4afcac.tar.gz
Doc: Fix broken links (explicit intra-module qualifiers)
All these links are intra-module, so these qualifiers should not have been required. Might be an indication of a QDoc bug. Task-number: QTBUG-37719 Change-Id: I791ad767f1eb33c52b96de451ee0601a0b7c12dd Reviewed-by: Martin Smith <martin.smith@digia.com> Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
-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.