Doc: Fix QDoc syntax in bindable properties overview

Drop the \c command when in front of \l commands as that doesn't work.

Pick-to: 6.6
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>
This commit is contained in:
Paul Wicking 2024-03-20 10:16:53 +01:00 committed by Qt Cherry-pick Bot
parent 8d1d4f9479
commit 611366f1ba

View File

@ -256,8 +256,8 @@
Q_PROPERTYs without \c BINDABLE can also be bound and be used in binding expressions, 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 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 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 property can be bound using \l QBindable::setBinding() or used in a binding
expression via \c \l QBindable::value(). You must use \c QBindable::value() in 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 expressions instead of the normal property \c READ function (or \c MEMBER) to enable
dependency tracking if the property is not \c BINDABLE. dependency tracking if the property is not \c BINDABLE.