From df5edd28bc4258b89d9d5ffdddf837f339a17aad Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 18 Sep 2013 16:36:02 +0200 Subject: convert Managed::put() API to be GC safe Change-Id: I09198ce372fa545372db389fac26828d21ad5731 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4managed.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/qml/jsruntime/qv4managed.cpp') diff --git a/src/qml/jsruntime/qv4managed.cpp b/src/qml/jsruntime/qv4managed.cpp index 776819a75f..c469293f5e 100644 --- a/src/qml/jsruntime/qv4managed.cpp +++ b/src/qml/jsruntime/qv4managed.cpp @@ -192,7 +192,7 @@ ReturnedValue Managed::getLookup(Managed *m, Lookup *) return 0; } -void Managed::setLookup(Managed *m, Lookup *, const Value &) +void Managed::setLookup(Managed *m, Lookup *, const ValueRef) { m->engine()->current->throwTypeError(); } @@ -211,3 +211,13 @@ ReturnedValue Managed::getIndexed(uint index, bool *hasProperty) { return vtbl->getIndexed(this, index, hasProperty); } + +void Managed::put(const StringRef name, const ValueRef value) +{ + vtbl->put(this, name, value); +} + +void Managed::setLookup(Lookup *l, const ValueRef v) +{ + vtbl->setLookup(this, l, v); +} -- cgit v1.2.3