diff options
author | Martin Smith <msmith@trolltech.com> | 2009-04-24 08:33:28 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-04-24 08:33:28 (GMT) |
commit | 739ae4cdc1369f62ec63055c90afaf55df2686d7 (patch) | |
tree | 39b49fb3f97fc39fa77f6f0f5aeceaae7d0d79f8 /src/declarative/qml/qmlmetaproperty.cpp | |
parent | 3f4ad7b2066eb399f3ae2d6c888a9410a66c69b9 (diff) | |
download | Qt-739ae4cdc1369f62ec63055c90afaf55df2686d7.zip Qt-739ae4cdc1369f62ec63055c90afaf55df2686d7.tar.gz Qt-739ae4cdc1369f62ec63055c90afaf55df2686d7.tar.bz2 |
qdoc: Edited qdoc comments to remove some qdoc warnings.
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty.cpp')
-rw-r--r-- | src/declarative/qml/qmlmetaproperty.cpp | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.cpp b/src/declarative/qml/qmlmetaproperty.cpp index 30e0bbc..1218b99 100644 --- a/src/declarative/qml/qmlmetaproperty.cpp +++ b/src/declarative/qml/qmlmetaproperty.cpp @@ -92,6 +92,9 @@ QmlMetaProperty::QmlMetaProperty() { } +/*! + The destructor deletes its heap data. + */ QmlMetaProperty::~QmlMetaProperty() { delete d; d = 0; @@ -923,7 +926,12 @@ bool QmlMetaProperty::hasChangedNotifier() const } /*! - Connect the property's change notifier signal to the \a dest \a method. + Connects the property's change notifier signal to the + specified \a method of the \a dest object and returns + true. Returns false if this metaproperty does not + represent a regular Qt property or if it has no + change notifier signal, or if the \a dest object does + not have the specified \a method. */ bool QmlMetaProperty::connectNotifier(QObject *dest, int method) const { @@ -938,7 +946,12 @@ bool QmlMetaProperty::connectNotifier(QObject *dest, int method) const } /*! - Connect the property's change notifier signal to the \a dest \a slot. + Connects the property's change notifier signal to the + specified \a slot of the \a dest object and returns + true. Returns false if this metaproperty does not + represent a regular Qt property or if it has no + change notifier signal, or if the \a dest object does + not have the specified \a slot. */ bool QmlMetaProperty::connectNotifier(QObject *dest, const char *slot) const { |