aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 03b99bf564..7bbf6e9133 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -2089,7 +2089,7 @@ ReturnedValue ExecutionEngine::callInContext(Function *function, QObject *self,
QV4::JSCallData jsCall(scope, argc);
QV4::populateJSCallArguments(this, jsCall, argc, args, types);
- QV4::CallData *callData = jsCall->callData();
+ QV4::CallData *callData = jsCall->callData(scope);
return function->call(selfValue, callData->argValues<QV4::Value>(), callData->argc(),
qmlContext);
}