diff options
author | Lars Knoll <[email protected]> | 2014-05-07 16:14:08 +0200 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2014-07-22 13:49:13 +0200 |
commit | 57f08e59fcc289742fe88ee45b82b52b26dbf945 (patch) | |
tree | cda5e6d37741c99a6e461846bacb60dfbcb8ad4f /src/qml/jsruntime/qv4regexpobject.cpp | |
parent | 2c7c791e3f0d801a8c1051b7da7b53cb4e50a017 (diff) |
Get rid of all uses of ObjectRef
Change-Id: I705e2362dcda542f56826dadec6b0a6f15848788
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 5c6c067944..2406fa223d 100644 --- a/src/qml/jsruntime/qv4regexpobject.cpp +++ b/src/qml/jsruntime/qv4regexpobject.cpp @@ -312,7 +312,7 @@ void RegExpCtor::markObjects(Managed *that, ExecutionEngine *e) FunctionObject::markObjects(that, e); } -void RegExpPrototype::init(ExecutionEngine *engine, ObjectRef ctor) +void RegExpPrototype::init(ExecutionEngine *engine, Object *ctor) { Scope scope(engine); ScopedObject o(scope); |