aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4context.cpp')
-rw-r--r--src/qml/jsruntime/qv4context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4context.cpp b/src/qml/jsruntime/qv4context.cpp
index da76da839b..4053eb4f09 100644
--- a/src/qml/jsruntime/qv4context.cpp
+++ b/src/qml/jsruntime/qv4context.cpp
@@ -234,7 +234,7 @@ bool ExecutionContext::deleteProperty(String *name)
// Do a standard call with this execution context as the outer scope
ReturnedValue ExecutionContext::call(Scope &scope, CallData *callData, Function *function, const FunctionObject *f)
{
- ExecutionContextSaver ctxSaver(scope);
+ ExecutionContextSaver ctxSaver(scope.engine);
Scoped<CallContext> ctx(scope, newCallContext(function, callData));
if (f)
@@ -254,7 +254,7 @@ ReturnedValue QV4::ExecutionContext::simpleCall(Scope &scope, CallData *callData
{
Q_ASSERT(function->canUseSimpleFunction());
- ExecutionContextSaver ctxSaver(scope);
+ ExecutionContextSaver ctxSaver(scope.engine);
CallContext::Data *ctx = scope.engine->memoryManager->allocSimpleCallContext();