summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2021-10-22 18:52:07 +0200
committerIvan Solovev <ivan.solovev@qt.io>2021-10-25 14:57:18 +0200
commit89a4c8d40d2ee1b8794dd7fcf80d226c5c87ba6c (patch)
treeb31605779feec52d295f0e4c0284ee7012413bdc /src/corelib/kernel
parent164e575673e47b2a3576e778840c027ccf0ae477 (diff)
Make QObjectComputedProperty documentation visible
QObjectComputedProperty belongs to public API. It's even referred in other documentation (for example, QBindable). It does not make sense to have its documentation marked as \internal. Task-number: QTBUG-97656 Pick-to: 6.2 Change-Id: I6ca81292cfafea873dd3577fb0e5ddb583969dc3 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r--src/corelib/kernel/qproperty.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/kernel/qproperty.cpp b/src/corelib/kernel/qproperty.cpp
index 6a129daa7a..c985943498 100644
--- a/src/corelib/kernel/qproperty.cpp
+++ b/src/corelib/kernel/qproperty.cpp
@@ -1556,7 +1556,6 @@ QString QPropertyBindingError::description() const
properties to the bindable property system.
\since 6.0
\ingroup tools
- \internal
QObjectComputedProperty is a read-only property which is recomputed on each read.
It does not store the computed value.
@@ -1636,7 +1635,6 @@ QString QPropertyBindingError::description() const
\macro Q_OBJECT_COMPUTED_PROPERTY(containingClass, type, name, callback)
\since 6.0
\relates QObjectCompatProperty
- \internal
\brief Declares a \l QObjectComputedProperty inside \a containingClass
of type \a type with name \a name. The argument \a callback specifies
a GETTER function to be called when the property is evaluated.