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/qv4sequenceobject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qml/jsruntime/qv4sequenceobject.cpp') diff --git a/src/qml/jsruntime/qv4sequenceobject.cpp b/src/qml/jsruntime/qv4sequenceobject.cpp index 7373e07340..eb6eabed6d 100644 --- a/src/qml/jsruntime/qv4sequenceobject.cpp +++ b/src/qml/jsruntime/qv4sequenceobject.cpp @@ -420,7 +420,7 @@ public: ScopedFunctionObject compare(scope, m_compareFn); if (!compare) return m_v4->throwTypeError(); - JSCall jsCall(scope, compare, 2); + JSCallData jsCall(scope, compare, 2); jsCall->args[0] = convertElementToValue(m_v4, lhs); jsCall->args[1] = convertElementToValue(m_v4, rhs); jsCall->thisObject = m_v4->globalObject; -- cgit v1.2.3