aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4argumentsobject.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-03-25 13:49:51 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-24 15:21:20 +0000
commit7501c394d00df4a4f8db0b92107250ccefabdfb4 (patch)
treef0b074cb6b3eb28d9d38e657ae8305f35000531a /src/qml/jsruntime/qv4argumentsobject.cpp
parent0d54025cd2c7f8aa6138926014fd2056f2d74501 (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 <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4argumentsobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4argumentsobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4argumentsobject.cpp b/src/qml/jsruntime/qv4argumentsobject.cpp
index 20983bb362..d7a8127a5b 100644
--- a/src/qml/jsruntime/qv4argumentsobject.cpp
+++ b/src/qml/jsruntime/qv4argumentsobject.cpp
@@ -41,7 +41,7 @@ DEFINE_OBJECT_VTABLE(ArgumentsObject);
Heap::ArgumentsObject::ArgumentsObject(QV4::CallContext *context)
: Heap::Object(context->d()->strictMode ? context->d()->engine->strictArgumentsObjectClass : context->d()->engine->argumentsObjectClass,
- context->d()->engine->objectPrototype.objectValue())
+ context->d()->engine->objectPrototype())
, context(context->d())
, fullyCreated(false)
{