Fix minor documentation typos in bindable properties

Change-Id: I4f8474820db613a675950a858438337558f1c88f
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io>
bb10
Juha Vuolle 2021-02-13 20:18:00 +02:00
parent df255a4a04
commit 08ace69f0e
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
updated automatically whenever their dependencies change.
Bindable properties are implemented in the class QProperty, which
consists the data object and a pointer to a management data structure, and
consists of the data object and a pointer to a management data structure, and
in class QObjectBindableProperty, which consists only of the data object and
uses the encapsulating QObject to store the pointer to the
management data structure.

View File

@ -1143,7 +1143,7 @@ QString QPropertyBindingError::description() const
\snippet code/src_corelib_kernel_qproperty.cpp 2
If the property does not need a changed notification, you can leave out the
"NOFITY xChanged" in the Q_PROPERTY macro as well as the last argument
"NOTIFY xChanged" in the Q_PROPERTY macro as well as the last argument
of the Q_OBJECT_BINDABLE_PROPERTY and Q_OBJECT_BINDABLE_PROPERTY_WITH_ARGS
macros.
*/