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/qv4functionobject.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/qv4functionobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4functionobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4functionobject.cpp b/src/qml/jsruntime/qv4functionobject.cpp index 571a85de61..7fef9f700e 100644 --- a/src/qml/jsruntime/qv4functionobject.cpp +++ b/src/qml/jsruntime/qv4functionobject.cpp @@ -254,7 +254,7 @@ FunctionPrototype::FunctionPrototype(InternalClass *ic) { } -void FunctionPrototype::init(ExecutionEngine *engine, ObjectRef ctor) +void FunctionPrototype::init(ExecutionEngine *engine, Object *ctor) { Scope scope(engine); ScopedObject o(scope); |