aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4qmlcontext.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-08-13 19:43:24 +0200
committerErik Verbruggen <erik.verbruggen@qt.io>2017-08-18 10:02:28 +0000
commit8437954c1ca0e019831423dcc5847f45cd7368ad (patch)
treef1d51cb94796e2632a4191f1152ebbdb9727d3fa /src/qml/jsruntime/qv4qmlcontext.cpp
parent661f9203c411b080fce6abf606ec8fb5c17a6bfe (diff)
Get rid of CallData in the ExecutionContext
Part 1, where the callData member is moved to CallContext. We'll get rid of it there in a subsequent commit. Change-Id: I6218992802133913f7766ebb3d2f47bd29f33907 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4qmlcontext.cpp')
-rw-r--r--src/qml/jsruntime/qv4qmlcontext.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4qmlcontext.cpp b/src/qml/jsruntime/qv4qmlcontext.cpp
index 88bea8156f..70723a97ed 100644
--- a/src/qml/jsruntime/qv4qmlcontext.cpp
+++ b/src/qml/jsruntime/qv4qmlcontext.cpp
@@ -299,7 +299,6 @@ void Heap::QmlContext::init(QV4::ExecutionContext *outerContext, QV4::QQmlContex
{
Heap::ExecutionContext::init(Heap::ExecutionContext::Type_QmlContext);
outer.set(internalClass->engine, outerContext->d());
- callData = outer->callData;
v4Function = outer->v4Function;
this->activation.set(internalClass->engine, qml->d());