summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcompileddata.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-12-02 02:49:24 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-12-02 02:49:24 (GMT)
commitf25f00210cf528f017c64d2fe6505ef15f9447f7 (patch)
tree9e7c35d2d4d8bd17fcc22a2a7d99c4988e743e23 /src/declarative/qml/qmlcompileddata.cpp
parentcb70f2096cbc66e6e8b5324e0e9508c788144e7e (diff)
downloadQt-f25f00210cf528f017c64d2fe6505ef15f9447f7.zip
Qt-f25f00210cf528f017c64d2fe6505ef15f9447f7.tar.gz
Qt-f25f00210cf528f017c64d2fe6505ef15f9447f7.tar.bz2
Cleanup cached binding closures
Diffstat (limited to 'src/declarative/qml/qmlcompileddata.cpp')
-rw-r--r--src/declarative/qml/qmlcompileddata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlcompileddata.cpp b/src/declarative/qml/qmlcompileddata.cpp
index 3428574..9b931c5 100644
--- a/src/declarative/qml/qmlcompileddata.cpp
+++ b/src/declarative/qml/qmlcompileddata.cpp
@@ -167,8 +167,8 @@ QmlCompiledData::~QmlCompiledData()
if (importCache)
importCache->release();
- qDeleteAll(programs);
- qDeleteAll(cachedValues);
+ qDeleteAll(cachedPrograms);
+ qDeleteAll(cachedClosures);
}
QObject *QmlCompiledData::TypeReference::createInstance(QmlContext *ctxt, const QBitField &bindings) const