diff options
author | Oleg Shparber <[email protected]> | 2014-12-31 10:40:16 -0800 |
---|---|---|
committer | Oleg Shparber <[email protected]> | 2015-01-03 23:29:51 +0100 |
commit | 4a9ed3de7d92809cf575f245f55d4f422b4983c3 (patch) | |
tree | df242fa9aa2895cf451096d2384e8f04ce1d0c70 /src/qml/jsruntime/qv4regexpobject.cpp | |
parent | 21d481c209692ec73ab6b6bc43e6977fc2f8c2fc (diff) |
Use QV4::ScopedArrayObject typedef instead of actual type
Change-Id: I975536745ac6c264aca074f84d223fbec7682d3d
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4regexpobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject.cpp b/src/qml/jsruntime/qv4regexpobject.cpp index fcbf91c3b0..31dd6af2a7 100644 --- a/src/qml/jsruntime/qv4regexpobject.cpp +++ b/src/qml/jsruntime/qv4regexpobject.cpp @@ -380,7 +380,7 @@ ReturnedValue RegExpPrototype::method_exec(CallContext *ctx) } // fill in result data - Scoped<ArrayObject> array(scope, scope.engine->newArrayObject(scope.engine->regExpExecArrayClass, scope.engine->arrayPrototype.asObject())); + ScopedArrayObject array(scope, scope.engine->newArrayObject(scope.engine->regExpExecArrayClass, scope.engine->arrayPrototype.asObject())); int len = r->value()->captureCount(); array->arrayReserve(len); ScopedValue v(scope); |