diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2009-09-23 09:40:44 (GMT) |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2009-09-23 09:40:44 (GMT) |
commit | 72e15d2c666885ea96494c3a9cc591aadbeee173 (patch) | |
tree | cc55996078f8a3ddb6e0307cc65b213308011b38 | |
parent | d97256d956ce649df271cb5c7f24029649a061f3 (diff) | |
download | Qt-72e15d2c666885ea96494c3a9cc591aadbeee173.zip Qt-72e15d2c666885ea96494c3a9cc591aadbeee173.tar.gz Qt-72e15d2c666885ea96494c3a9cc591aadbeee173.tar.bz2 |
Fixed compile (missing colon after public)
-rw-r--r-- | src/declarative/qml/qmlcompositetypedata_p.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/qml/qmlcompositetypedata_p.h b/src/declarative/qml/qmlcompositetypedata_p.h index 3d246cc..48c6c2b 100644 --- a/src/declarative/qml/qmlcompositetypedata_p.h +++ b/src/declarative/qml/qmlcompositetypedata_p.h @@ -60,11 +60,11 @@ QT_BEGIN_NAMESPACE class QmlCompositeTypeData : public QmlRefCount { -public +public: QmlCompositeTypeData(); virtual ~QmlCompositeTypeData(); - enum Status { + enum Status { Invalid, Complete, Error, @@ -84,8 +84,8 @@ public QList<QmlCompositeTypeData *> dependants; - // Return a QmlComponent if the QmlCompositeTypeData is not in the Waiting - // state. The QmlComponent is owned by the QmlCompositeTypeData, so a + // Return a QmlComponent if the QmlCompositeTypeData is not in the Waiting + // state. The QmlComponent is owned by the QmlCompositeTypeData, so a // reference should be kept to keep the QmlComponent alive. QmlComponent *toComponent(QmlEngine *); // Return a QmlCompiledData if possible, or 0 if an error @@ -102,7 +102,7 @@ public QList<TypeReference> types; - // Add or remove p as a waiter. When the QmlCompositeTypeData becomes + // Add or remove p as a waiter. When the QmlCompositeTypeData becomes // ready, the QmlComponentPrivate::typeDataReady() method will be invoked on // p. The waiter is automatically removed when the typeDataReady() method // is invoked, so there is no need to call remWaiter() in this case. |