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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 7bbf6e9133..182e131c9e 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -2086,10 +2086,10 @@ ReturnedValue ExecutionEngine::callInContext(Function *function, QObject *self,
return Encode::undefined();
// use JSCallData to pass arguments into the function call
- QV4::JSCallData jsCall(scope, argc);
+ QV4::JSCallArguments jsCall(scope, argc);
QV4::populateJSCallArguments(this, jsCall, argc, args, types);
- QV4::CallData *callData = jsCall->callData(scope);
+ QV4::CallData *callData = jsCall.callData(scope);
return function->call(selfValue, callData->argValues<QV4::Value>(), callData->argc(),
qmlContext);
}