QProperty docs: update macro name

Use Q_OBJECT_BINDABLE_PROPERTY instead of non-existing ones.
Follow-up to 50e1976437.

Task-number: QTBUG-85520
Pick-to: 6.0
Change-Id: I138f0775d9804029f2ecd6bd3594ab47b247392e
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
This commit is contained in:
Andreas Buhr 2020-12-15 19:00:58 +01:00
parent 18ef1b83fb
commit 618dd6b5a7

View File

@ -1505,10 +1505,11 @@ struct QBindingStoragePrivate
\internal
QBindingStorage acts as a storage for property binding related data in QObject.
Any property in a QObject can be made bindable, by using the Q_BINDABLE_PROPERTY_DATA
macro to declare the data storage. Then implement a setter and getter for the property
and declare it as a Q_PROPERTY as usual. Finally make it bindable, but using
the Q_BINDABLE_PROPERTY macro after the declaration of the setter and getter.
Any property in a QObject can be made bindable by using the Q_OBJECT_BINDABLE_PROPERTY
macro to declare it. A setter and a getter for the property and a declaration using
Q_PROPERTY have to be made as usual.
Binding related data will automatically be stored within the QBindingStorage
inside the QObject.
*/
QBindingStorage::QBindingStorage()