diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2009-07-24 07:48:28 (GMT) |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2009-07-24 07:48:28 (GMT) |
commit | 80476372e6f4dd3e179eeba949e86a336bc8fde3 (patch) | |
tree | 9502663e814ffb6f0b1a6542e76c25e82a4a0e3b /src/declarative/qml/qmlparser_p.h | |
parent | ea2f61a76f8b6075a3421f8f1dce353d8ae22b58 (diff) | |
download | Qt-80476372e6f4dd3e179eeba949e86a336bc8fde3.zip Qt-80476372e6f4dd3e179eeba949e86a336bc8fde3.tar.gz Qt-80476372e6f4dd3e179eeba949e86a336bc8fde3.tar.bz2 |
Added objectClassName now that objectType is the fully-qualified type
name.
Diffstat (limited to 'src/declarative/qml/qmlparser_p.h')
-rw-r--r-- | src/declarative/qml/qmlparser_p.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlparser_p.h b/src/declarative/qml/qmlparser_p.h index 927c9e6..120af75 100644 --- a/src/declarative/qml/qmlparser_p.h +++ b/src/declarative/qml/qmlparser_p.h @@ -115,8 +115,10 @@ namespace QmlParser int type; // The url of this object if it is an external type. Used by the DOM QUrl url; - // The name of this type + // The fully-qualified name of this type QByteArray typeName; + // The class name + QByteArray className; // 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 |