summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlparser_p.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-07-16 05:02:25 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-07-16 05:02:25 (GMT)
commit1962eaef07cb3adf73e7d8815ac470f62003a192 (patch)
tree86b13f69b3dacce41aaad1656e10f674d087fec1 /src/declarative/qml/qmlparser_p.h
parent1734f968773fade53a73c8ce04ea86de8df0b875 (diff)
downloadQt-1962eaef07cb3adf73e7d8815ac470f62003a192.zip
Qt-1962eaef07cb3adf73e7d8815ac470f62003a192.tar.gz
Qt-1962eaef07cb3adf73e7d8815ac470f62003a192.tar.bz2
Small cleanups
Diffstat (limited to 'src/declarative/qml/qmlparser_p.h')
-rw-r--r--src/declarative/qml/qmlparser_p.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlparser_p.h b/src/declarative/qml/qmlparser_p.h
index d96a43e..84e6dd4 100644
--- a/src/declarative/qml/qmlparser_p.h
+++ b/src/declarative/qml/qmlparser_p.h
@@ -117,8 +117,10 @@ namespace QmlParser
QUrl url;
// The name of this type
QByteArray typeName;
- // The id assigned to the object (if any).
- QByteArray id;
+ // The id assigned to the object (if any). Set by the QmlCompiler
+ QString id;
+ // The id index assigned to the object (if any). Set by the QmlCompiler
+ int idIndex;
// Custom parsed data
QByteArray custom;
// Returns the metaobject for this type, or 0 if not available.
@@ -129,7 +131,6 @@ namespace QmlParser
const QMetaObject *metatype;
// The synthesized metaobject, if QML added signals or properties to
// this type. Otherwise null
- QMetaObject *extObjectData;
QAbstractDynamicMetaObject extObject;
QByteArray metadata; // Generated by compiler
QByteArray synthdata; // Generated by compiler