aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2025-12-11 14:25:26 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2025-12-16 05:43:51 +0000
commitad39361d28b172d51f9da1eb4548c683912b00bb (patch)
tree35eec5c316bf257e829c596f7e72338d2f9d1cec /src
parent5438ba98306195c499645594447ceabda2b56c28 (diff)
Docs: fix various links6.11
Use the correct syntax for the scope of the link target for Qt Quick types. Change-Id: Ica96c1b736a9b8ddd29a63c21d6a7094bd598ed8 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit 8ba31901cbeb626da9e77504d056810f0b1654ec) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/quick/items/qquickgridview.cpp4
-rw-r--r--src/quickdialogs/quickdialogs/qquickabstractdialog.cpp3
-rw-r--r--src/quicktemplates/qquicktreeviewdelegate.cpp4
-rw-r--r--src/quickvectorimage/qquickvectorimage.cpp7
4 files changed, 10 insertions, 8 deletions
diff --git a/src/quick/items/qquickgridview.cpp b/src/quick/items/qquickgridview.cpp
index 23e8c7ed47..2eb847131e 100644
--- a/src/quick/items/qquickgridview.cpp
+++ b/src/quick/items/qquickgridview.cpp
@@ -2709,7 +2709,7 @@ bool QQuickGridViewPrivate::needsRefillForAddedOrRemovedIndex(int modelIndex) co
\qmlmethod int QtQuick::GridView::indexAt(real x, real y)
Returns the index of the visible item containing the point \a x, \a y in
- \l {QQuickFlickable::contentItem}{content item} coordinates. If there is
+ \l {QtQuick::Flickable::contentItem}{content item} coordinates. If there is
no item at the point specified, or the item is not visible -1 is returned.
If the item is outside the visible area, -1 is returned, regardless of
@@ -2743,7 +2743,7 @@ bool QQuickGridViewPrivate::needsRefillForAddedOrRemovedIndex(int modelIndex) co
\qmlmethod Item QtQuick::GridView::itemAt(real x, real y)
Returns the visible item containing the point \a x, \a y in
- \l {QQuickFlickable::contentItem}{content item} coordinates. If there
+ \l {QtQuick::Flickable::contentItem}{content item} coordinates. If there
is no item at the point specified, or the item is not visible null is returned.
If the item is outside the visible area, null is returned, regardless of
diff --git a/src/quickdialogs/quickdialogs/qquickabstractdialog.cpp b/src/quickdialogs/quickdialogs/qquickabstractdialog.cpp
index a42a7d36f0..d7292ffebc 100644
--- a/src/quickdialogs/quickdialogs/qquickabstractdialog.cpp
+++ b/src/quickdialogs/quickdialogs/qquickabstractdialog.cpp
@@ -298,7 +298,8 @@ void QQuickAbstractDialog::setResult(int result)
\qmlproperty enumeration QtQuick.Dialogs::Dialog::popupType
\since 6.10
- This property can be used to change the \l {QQuickPopup::}{popupType} of the non-native quick dialog.
+ This property can be used to change the \l {QtQuick.Controls::Popup::}{popupType}
+ of the non-native quick dialog.
The available values are:
\value Popup.Item The dialog will appear as an item in the window of the nearest parent item.
diff --git a/src/quicktemplates/qquicktreeviewdelegate.cpp b/src/quicktemplates/qquicktreeviewdelegate.cpp
index 22ffc777fe..5294b7754f 100644
--- a/src/quicktemplates/qquicktreeviewdelegate.cpp
+++ b/src/quicktemplates/qquicktreeviewdelegate.cpp
@@ -205,7 +205,7 @@ QT_BEGIN_NAMESPACE
If no indicator is visible, the space will be between the left
edge of the view and the left edge of the contentItem.
- \sa rightMargin, indentation, {QQuickControl::}{spacing}
+ \sa rightMargin, indentation, {QtQuick.Controls::Control::}{spacing}
*/
/*!
@@ -214,7 +214,7 @@ QT_BEGIN_NAMESPACE
This property holds the space between the right edge of the view
and the right edge of the contentItem.
- \sa leftMargin, indentation, {QQuickControl::}{spacing}
+ \sa leftMargin, indentation, {QtQuick.Controls::Control::}{spacing}
*/
using namespace Qt::Literals::StringLiterals;
diff --git a/src/quickvectorimage/qquickvectorimage.cpp b/src/quickvectorimage/qquickvectorimage.cpp
index 707082101a..a55cc0d705 100644
--- a/src/quickvectorimage/qquickvectorimage.cpp
+++ b/src/quickvectorimage/qquickvectorimage.cpp
@@ -37,9 +37,10 @@ Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, vectorImagePluginLoader,
Qt Quick Vector Image provides support for displaying vector image files in a Qt Quick
scene.
- It currently supports the \c SVG file format. In addition, Lottie support can be enabled by
- setting the \l{assumeTrustedSource} property to true and including the plugin from the
- \l{Qt Lottie Animation} module.
+ It currently supports the \c SVG file format. In addition, Lottie support
+ can be enabled by setting the
+ \l{QtQuick.VectorImage::VectorImage::}{assumeTrustedSource} property to true
+ and including the plugin from the \l{Qt Lottie Animation} module.
Qt supports multiple options for displaying SVG files. For an overview and comparison of
the different ones, see the documentation of the \l{svgtoqml} tool.