summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcomponent_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/qmlcomponent_p.h')
-rw-r--r--src/declarative/qml/qmlcomponent_p.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlcomponent_p.h b/src/declarative/qml/qmlcomponent_p.h
index e97ec67..8074775 100644
--- a/src/declarative/qml/qmlcomponent_p.h
+++ b/src/declarative/qml/qmlcomponent_p.h
@@ -63,12 +63,13 @@ class QmlComponentPrivate : public QObjectPrivate
public:
QmlComponentPrivate() : typeData(0), start(-1), count(-1), cc(0), completePending(false), engine(0) {}
- QmlCompositeTypeManager::TypeData *typeData;
+ QmlCompositeTypeData *typeData;
void typeDataReady();
- void fromTypeData(QmlCompositeTypeManager::TypeData *data);
+ void fromTypeData(QmlCompositeTypeData *data);
- QString name;
+ QString errorDescription;
+ QUrl url;
int start;
int count;
@@ -78,6 +79,8 @@ public:
bool completePending;
QmlEngine *engine;
+
+ void clear();
};
#endif // QMLCOMPONENT_P_H