aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeparser.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2011-07-14 17:34:06 +1000
committerQt by Nokia <qt-info@nokia.com>2011-08-30 13:18:28 +0200
commit275149f704436fc1115fb337a5803e86f7fce9cf (patch)
treecafe19ff3220b956f6f0000122259a33b440a316 /src/declarative/qml/qdeclarativeparser.cpp
parentfcb55f3a289f911299f92509287be97723ddbf50 (diff)
Remove some QHash and QLists.
Change-Id: I153fa1abbe27f0724e453c5c979f740e956819c9 Reviewed-on: http://codereview.qt.nokia.com/3747 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Diffstat (limited to 'src/declarative/qml/qdeclarativeparser.cpp')
-rw-r--r--src/declarative/qml/qdeclarativeparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativeparser.cpp b/src/declarative/qml/qdeclarativeparser.cpp
index bba26215cb..eca085868c 100644
--- a/src/declarative/qml/qdeclarativeparser.cpp
+++ b/src/declarative/qml/qdeclarativeparser.cpp
@@ -67,7 +67,7 @@ using namespace QDeclarativeParser;
QDeclarativeParser::Object::Object()
: type(-1), idIndex(-1), metatype(0), synthCache(0), defaultProperty(0), parserStatusCast(-1),
- componentCompileState(0)
+ componentCompileState(0), nextAliasingObject(0), nextIdObject(0)
{
}
@@ -233,7 +233,7 @@ bool QDeclarativeParser::Property::isEmpty() const
}
QDeclarativeParser::Value::Value()
-: type(Unknown), object(0), bindingReference(0), nextValue(0)
+: type(Unknown), object(0), bindingReference(0), signalExpressionContextStack(0), nextValue(0)
{
}