aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4jsonobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4jsonobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4jsonobject.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp
index cd365a1be9..7a4ae595ae 100644
--- a/src/qml/jsruntime/qv4jsonobject.cpp
+++ b/src/qml/jsruntime/qv4jsonobject.cpp
@@ -697,21 +697,21 @@ QString Stringify::Str(const QString &key, const Value &v)
ScopedString s(scope, v4->newString(QStringLiteral("toJSON")));
ScopedFunctionObject toJSON(scope, o->get(s));
if (!!toJSON) {
- JSCallData jsCall(scope, toJSON, 1);
- jsCall->thisObject = value;
- jsCall->args[0] = v4->newString(key);
- value = jsCall.call();
+ JSCallData jsCallData(scope, toJSON, 1);
+ jsCallData->thisObject = value;
+ jsCallData->args[0] = v4->newString(key);
+ value = toJSON->call(jsCallData);
}
}
if (replacerFunction) {
ScopedObject holder(scope, v4->newObject());
holder->put(scope.engine->id_empty(), value);
- JSCallData jsCall(scope, replacerFunction, 2);
- jsCall->args[0] = v4->newString(key);
- jsCall->args[1] = value;
- jsCall->thisObject = holder;
- value = jsCall.call();
+ JSCallData jsCallData(scope, replacerFunction, 2);
+ jsCallData->args[0] = v4->newString(key);
+ jsCallData->args[1] = value;
+ jsCallData->thisObject = holder;
+ value = replacerFunction->call(jsCallData);
}
o = value->asReturnedValue();