diff options
| author | Oleg Shparber <trollixx@gmail.com> | 2014-11-28 01:19:11 -0800 |
|---|---|---|
| committer | Oleg Shparber <trollixx@gmail.com> | 2014-12-12 03:50:28 +0100 |
| commit | f43928f6023f435dfe3e600dd4474cd2c7a92e16 (patch) | |
| tree | 34fe7300d47158e655058f7ae09bbc05d81441f7 /src/qml/jsruntime/qv4dateobject.cpp | |
| parent | 87a055bc8eee653a18d51f94a546cd452732223a (diff) | |
Add default parameter value for ScopedCallData()
Change-Id: I16b6662a47c682e145d3e2201f9e90f58405a599
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4dateobject.cpp')
| -rw-r--r-- | src/qml/jsruntime/qv4dateobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4dateobject.cpp b/src/qml/jsruntime/qv4dateobject.cpp index 811d2f0acb..6455219881 100644 --- a/src/qml/jsruntime/qv4dateobject.cpp +++ b/src/qml/jsruntime/qv4dateobject.cpp @@ -1311,7 +1311,7 @@ ReturnedValue DatePrototype::method_toJSON(CallContext *ctx) if (!toIso) return ctx->engine()->throwTypeError(); - ScopedCallData callData(scope, 0); + ScopedCallData callData(scope); callData->thisObject = ctx->d()->callData->thisObject; return toIso->call(callData); } |
