diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-19 07:08:13 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-19 07:08:13 (GMT) |
commit | 4223acff70de3036c5b7d75bccaec0c540c23556 (patch) | |
tree | 3c93c5a22e49b0998725fce10553bae96f036212 /src/declarative/qml/qdeclarativeparser_p.h | |
parent | fae16b674b619b73037841a00577de5922a26595 (diff) | |
download | Qt-4223acff70de3036c5b7d75bccaec0c540c23556.zip Qt-4223acff70de3036c5b7d75bccaec0c540c23556.tar.gz Qt-4223acff70de3036c5b7d75bccaec0c540c23556.tar.bz2 |
Remove Script {} support
Diffstat (limited to 'src/declarative/qml/qdeclarativeparser_p.h')
-rw-r--r-- | src/declarative/qml/qdeclarativeparser_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativeparser_p.h b/src/declarative/qml/qdeclarativeparser_p.h index 00fc65b..0870cfb 100644 --- a/src/declarative/qml/qdeclarativeparser_p.h +++ b/src/declarative/qml/qdeclarativeparser_p.h @@ -160,8 +160,6 @@ namespace QDeclarativeParser Property *defaultProperty; QHash<QByteArray, Property *> properties; - QList<Object *> scriptBlockObjects; - // Output of the compilation phase (these properties continue to exist // in either the defaultProperty or properties members too) void addValueProperty(Property *); @@ -190,7 +188,9 @@ namespace QDeclarativeParser QList<int> lineNumbers; QList<Pragmas> pragmas; }; +#if 0 QList<ScriptBlock> scripts; +#endif // The bytes to cast instances by to get to the QDeclarativeParserStatus // interface. -1 indicates the type doesn't support this interface. |