diff options
author | Lars Knoll <[email protected]> | 2017-10-20 15:14:41 +0200 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2017-11-07 09:00:26 +0000 |
commit | c6c79644dc869259482a011f8b737f709af02fb2 (patch) | |
tree | 6f3c3a721f7bbd1b1a76189b537faffc4de24c1a /src/qml/jsruntime/qv4jsonobject.cpp | |
parent | 7287690a41ab762c0c4efe02632efeaf3e0187b4 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4jsonobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4jsonobject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp index fb1f4abbfc..cd365a1be9 100644 --- a/src/qml/jsruntime/qv4jsonobject.cpp +++ b/src/qml/jsruntime/qv4jsonobject.cpp @@ -697,7 +697,7 @@ QString Stringify::Str(const QString &key, const Value &v) ScopedString s(scope, v4->newString(QStringLiteral("toJSON"))); ScopedFunctionObject toJSON(scope, o->get(s)); if (!!toJSON) { - JSCall jsCall(scope, toJSON, 1); + JSCallData jsCall(scope, toJSON, 1); jsCall->thisObject = value; jsCall->args[0] = v4->newString(key); value = jsCall.call(); @@ -707,7 +707,7 @@ QString Stringify::Str(const QString &key, const Value &v) if (replacerFunction) { ScopedObject holder(scope, v4->newObject()); holder->put(scope.engine->id_empty(), value); - JSCall jsCall(scope, replacerFunction, 2); + JSCallData jsCall(scope, replacerFunction, 2); jsCall->args[0] = v4->newString(key); jsCall->args[1] = value; jsCall->thisObject = holder; |