summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-04-24 01:00:59 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-04-24 01:00:59 (GMT)
commit67185a8643c1a27cd30a660105333ea36605fba9 (patch)
tree86a1f14720968a8139dbe647467a82941a5f855c /src/declarative/qml
parentc0979cc534e9204edc04759b7b6bef7d6980c466 (diff)
parentdb815819dae525c64575de38b92afa4cf092ce06 (diff)
downloadQt-67185a8643c1a27cd30a660105333ea36605fba9.zip
Qt-67185a8643c1a27cd30a660105333ea36605fba9.tar.gz
Qt-67185a8643c1a27cd30a660105333ea36605fba9.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative/qml')
-rw-r--r--src/declarative/qml/qmlcomponent.cpp8
-rw-r--r--src/declarative/qml/qmlcomponent.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/qml/qmlcomponent.cpp b/src/declarative/qml/qmlcomponent.cpp
index 0f60870..83d500c 100644
--- a/src/declarative/qml/qmlcomponent.cpp
+++ b/src/declarative/qml/qmlcomponent.cpp
@@ -96,10 +96,10 @@ QML_DEFINE_TYPE(QmlComponent,Component);
Specifies the loading status of the QmlComponent.
- \o Null This QmlComponent has no data. Call loadUrl() or setData() to add QML content.
- \o Ready This QmlComponent is ready and create() may be called.
- \o Loading This QmlComponent is loading network data.
- \o Error An error has occured. Calling errorDescription() to retrieve a description.
+ \value Null This QmlComponent has no data. Call loadUrl() or setData() to add QML content.
+ \value Ready This QmlComponent is ready and create() may be called.
+ \value Loading This QmlComponent is loading network data.
+ \value Error An error has occured. Calling errorDescription() to retrieve a description.
*/
void QmlComponentPrivate::typeDataReady()
diff --git a/src/declarative/qml/qmlcomponent.h b/src/declarative/qml/qmlcomponent.h
index 91e0917..83d08ea 100644
--- a/src/declarative/qml/qmlcomponent.h
+++ b/src/declarative/qml/qmlcomponent.h
@@ -89,7 +89,7 @@ public:
void setData(const QByteArray &, const QUrl &baseUrl = QUrl());
Q_SIGNALS:
- void statusChanged(Status);
+ void statusChanged(QmlComponent::Status);
protected:
QmlComponent(QmlComponentPrivate &dd, QObject* parent);