summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlmetaproperty.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-06 01:39:30 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-06 01:39:30 (GMT)
commit5edf4ed878bbe933e6ff0023cce8808b1dcff6c0 (patch)
tree82d1cfe029c89a6ca5b474e1835c9d46a4787bbf /src/declarative/qml/qmlmetaproperty.cpp
parent2040877c5e5bc79c096892a2e7aa019d1ca88fa1 (diff)
downloadQt-5edf4ed878bbe933e6ff0023cce8808b1dcff6c0.zip
Qt-5edf4ed878bbe933e6ff0023cce8808b1dcff6c0.tar.gz
Qt-5edf4ed878bbe933e6ff0023cce8808b1dcff6c0.tar.bz2
Doc
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty.cpp')
-rw-r--r--src/declarative/qml/qmlmetaproperty.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.cpp b/src/declarative/qml/qmlmetaproperty.cpp
index 14a45dc..40c9b0e 100644
--- a/src/declarative/qml/qmlmetaproperty.cpp
+++ b/src/declarative/qml/qmlmetaproperty.cpp
@@ -265,13 +265,13 @@ QmlMetaProperty::QmlMetaProperty(const QmlMetaProperty &other)
This enum specifies a category of QML property.
- \value Unknown
- \value InvalidProperty
- \value Bindable
- \value List
- \value QmlList
- \value Object
- \value Normal
+ \value Unknown The category is unknown. This will never be returned from propertyCategory()
+ \value InvalidProperty The property is invalid.
+ \value Bindable The property is a QmlBindableValue.
+ \value List The property is a QList pointer
+ \value QmlList The property is a QmlList pointer
+ \value Object The property is a QObject derived type pointer
+ \value Normal The property is none of the above.
*/
/*!
@@ -279,12 +279,12 @@ QmlMetaProperty::QmlMetaProperty(const QmlMetaProperty &other)
This enum specifies a type of QML property.
- \value Invalid
- \value Property
- \value SignalProperty
- \value Signal
- \value Default
- \value Attached
+ \value Invalid The property is invalid.
+ \value Property The property is a regular Qt property.
+ \value SignalProperty The property is a signal property.
+ \value Signal The property is a signal.
+ \value Default The property is the default property.
+ \value Attached The property is an attached property.
*/
/*!