summaryrefslogtreecommitdiff
path: root/src/qml/jsruntime/qv4dateobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4dateobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4dateobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4dateobject.cpp b/src/qml/jsruntime/qv4dateobject.cpp
index 6c971195f6..436950bf28 100644
--- a/src/qml/jsruntime/qv4dateobject.cpp
+++ b/src/qml/jsruntime/qv4dateobject.cpp
@@ -1451,9 +1451,9 @@ ReturnedValue DatePrototype::method_toJSON(const BuiltinFunction *b, CallData *c
if (!toIso)
return v4->throwTypeError();
- JSCallData jsCall(scope, toIso);
- jsCall->thisObject = callData->thisObject;
- return jsCall.call();
+ JSCallData jsCallData(scope, toIso);
+ jsCallData->thisObject = callData->thisObject;
+ return toIso->call(jsCallData);
}
void DatePrototype::timezoneUpdated()