summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2024-03-20 10:16:53 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-03-21 00:16:56 +0000
commitbdd003899b439c700e0ae4b7d404661ac2ec6fd9 (patch)
tree57a05f0691c380ac651a616e9117cd9c4615833c /src
parentd89c9e7310541e73024ed6a76945b0ece7509f4b (diff)
Doc: Fix QDoc syntax in bindable properties overview
Drop the \c command when in front of \l commands as that doesn't work. Change-Id: I0aa092461807e068e9c2368f5d6f04e77b56c910 Reviewed-by: Andreas Eliasson <andreas.eliasson@qt.io> Reviewed-by: James DeLisle <james.delisle@qt.io> (cherry picked from commit c8fb376de50683c81cbf64b4422058d4dd2e9f07) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 611366f1baa7db20d38e21889eed6518a13fa9e9)
Diffstat (limited to 'src')
-rw-r--r--src/corelib/doc/src/objectmodel/bindableproperties.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/doc/src/objectmodel/bindableproperties.qdoc b/src/corelib/doc/src/objectmodel/bindableproperties.qdoc
index 70eb0cebed..9b3ea6ae66 100644
--- a/src/corelib/doc/src/objectmodel/bindableproperties.qdoc
+++ b/src/corelib/doc/src/objectmodel/bindableproperties.qdoc
@@ -256,8 +256,8 @@
Q_PROPERTYs without \c BINDABLE can also be bound and be used in binding expressions,
as long as they define a \c NOTIFY signal. You must wrap the property in a \l QBindable
using the \c {QBindable(QObject* obj, const char* property)} constructor. Then, the
- property can be bound using \c \l QBindable::setBinding() or used in a binding
- expression via \c \l QBindable::value(). You must use \c QBindable::value() in binding
+ property can be bound using \l QBindable::setBinding() or used in a binding
+ expression via \l QBindable::value(). You must use \c QBindable::value() in binding
expressions instead of the normal property \c READ function (or \c MEMBER) to enable
dependency tracking if the property is not \c BINDABLE.