diff options
author | Lars Knoll <[email protected]> | 2015-03-25 13:49:51 +0100 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2015-04-24 15:21:20 +0000 |
commit | 7501c394d00df4a4f8db0b92107250ccefabdfb4 (patch) | |
tree | f0b074cb6b3eb28d9d38e657ae8305f35000531a /src/qml/jsruntime/qv4jsonobject.cpp | |
parent | 0d54025cd2c7f8aa6138926014fd2056f2d74501 (diff) |
Continue the work to move Values inside the v4 engine to the js stack
Started with objectPrototype, the next commits will move more
of them over into the new data structure.
Change-Id: I1a048e95149ce69e4e42094db2dd738ce49b50b8
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4jsonobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4jsonobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp index e2b27c545b..95d08d7a10 100644 --- a/src/qml/jsruntime/qv4jsonobject.cpp +++ b/src/qml/jsruntime/qv4jsonobject.cpp @@ -852,7 +852,7 @@ QString Stringify::JA(ArrayObject *a) Heap::JsonObject::JsonObject(ExecutionEngine *e) - : Heap::Object(e->emptyClass, e->objectPrototype.objectValue()) + : Heap::Object(e->emptyClass, e->objectPrototype()) { Scope scope(e); ScopedObject o(scope, this); |