aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlobjectcreator.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2016-05-29 09:33:26 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2016-05-31 06:55:02 +0000
commit3241573e1a72f2829d1339cd5bbe62f30d93c37f (patch)
tree1d97a226af23f8a92591a4cbdb97a2dfc7b941e2 /src/qml/qml/qqmlobjectcreator.cpp
parent7dc5cd942eb5c55a26d539eedff48b2d6c8e0fc3 (diff)
Move property caches from QQmlCompiledData to QV4::CompiledData::CompilationUnit
This makes particularly sense as the binding property data per object that allows us to avoid a by-name property lookup when instantiating types is also stored there. Change-Id: I4d9275c1d8fde252df83eb11a9dfea71e5e9583a Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'src/qml/qml/qqmlobjectcreator.cpp')
-rw-r--r--src/qml/qml/qqmlobjectcreator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlobjectcreator.cpp b/src/qml/qml/qqmlobjectcreator.cpp
index 82ec454b68..798c8c8c5d 100644
--- a/src/qml/qml/qqmlobjectcreator.cpp
+++ b/src/qml/qml/qqmlobjectcreator.cpp
@@ -73,7 +73,7 @@ QQmlObjectCreator::QQmlObjectCreator(QQmlContextData *parentContext, QQmlCompile
: phase(Startup)
, compiledData(compiledData)
, resolvedTypes(compiledData->resolvedTypes)
- , propertyCaches(compiledData->propertyCaches)
+ , propertyCaches(compiledData->compilationUnit->propertyCaches)
, activeVMEDataForRootContext(activeVMEDataForRootContext)
{
init(parentContext);
@@ -97,7 +97,7 @@ QQmlObjectCreator::QQmlObjectCreator(QQmlContextData *parentContext, QQmlCompile
: phase(Startup)
, compiledData(compiledData)
, resolvedTypes(compiledData->resolvedTypes)
- , propertyCaches(compiledData->propertyCaches)
+ , propertyCaches(compiledData->compilationUnit->propertyCaches)
, activeVMEDataForRootContext(0)
{
init(parentContext);