summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2021-10-01 11:14:12 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-10-01 17:50:52 +0000
commit415bff4b417a87acc4971f9922d31b50c1906450 (patch)
tree3e174e15f2180a43fcc0b965939a1fd923fe5a82 /src
parent84535d5136304c9b35a261e66743300680a35e8f (diff)
Doc: Use correct \relates target
\relates takes a class name as argument, but doesn't deal nicely with a templates full definition. Task-number: QTBUG-97028 Change-Id: I7c608717c5d552bc553073534104dece01b8ff96 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io> (cherry picked from commit 0acada9c7b6fb6a96145484da011aeec3191a35a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/kernel/qproperty.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qproperty.cpp b/src/corelib/kernel/qproperty.cpp
index fa22c6f498..f8bda06176 100644
--- a/src/corelib/kernel/qproperty.cpp
+++ b/src/corelib/kernel/qproperty.cpp
@@ -203,7 +203,7 @@ static thread_local QBindingStatus bindingStatus;
/*!
\since 6.2
- \relates template<typename T> QProperty<T>
+ \relates QProperty
Marks the beginning of a property update group. Inside this group,
changing a property does neither immediately update any dependent properties
@@ -230,7 +230,7 @@ void Qt::beginPropertyUpdateGroup()
/*!
\since 6.2
- \relates template<typename T> QProperty<T>
+ \relates QProperty
Ends a property update group. If the outermost group has been ended, and deferred
binding evaluations and notifications happen now.