diff options
Diffstat (limited to 'src/qml/jsruntime/qv4managed.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4managed.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4managed.cpp b/src/qml/jsruntime/qv4managed.cpp index c469293f5e..7b0d4058a2 100644 --- a/src/qml/jsruntime/qv4managed.cpp +++ b/src/qml/jsruntime/qv4managed.cpp @@ -221,3 +221,8 @@ void Managed::setLookup(Lookup *l, const ValueRef v) { vtbl->setLookup(this, l, v); } + +void Managed::putIndexed(uint index, const ValueRef value) +{ + vtbl->putIndexed(this, index, value); +} |