From c6c79644dc869259482a011f8b737f709af02fb2 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Fri, 20 Oct 2017 15:14:41 +0200 Subject: Rename JSCall to JSCallData As, this is going to change in a simple stack based structure to keep pointers to the data to pass to calls. Change-Id: Ia9aa3f81ee3eeba36affd16aac7b2fe97d59aea9 Reviewed-by: Erik Verbruggen --- src/qml/jsruntime/qv4globalobject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qml/jsruntime/qv4globalobject.cpp') diff --git a/src/qml/jsruntime/qv4globalobject.cpp b/src/qml/jsruntime/qv4globalobject.cpp index 668fea25e7..6f74ee4456 100644 --- a/src/qml/jsruntime/qv4globalobject.cpp +++ b/src/qml/jsruntime/qv4globalobject.cpp @@ -374,7 +374,7 @@ ReturnedValue EvalFunction::evalCall(CallData *callData, bool directCall) const if (function->isStrict() || (ctx->d()->v4Function->isStrict())) { ScopedFunctionObject e(scope, FunctionObject::createScriptFunction(ctx, function)); - JSCall jsCall(scope, e, 0); + JSCallData jsCall(scope, e, 0); if (directCall) jsCall->thisObject = scope.engine->currentStackFrame->thisObject(); else @@ -387,7 +387,7 @@ ReturnedValue EvalFunction::evalCall(CallData *callData, bool directCall) const // set the correct v4 function for the context ctx->d()->v4Function = function; - JSCall jsCall(scope, nullptr); + JSCallData jsCall(scope, nullptr); jsCall->thisObject = scope.engine->currentStackFrame->thisObject(); jsCall->context = *ctx; return function->call(jsCall); -- cgit v1.2.3