aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject_p.h
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/qv4regexpobject_p.h
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/qv4regexpobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4regexpobject_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject_p.h b/src/qml/jsruntime/qv4regexpobject_p.h
index af83282fe4..29d20614de 100644
--- a/src/qml/jsruntime/qv4regexpobject_p.h
+++ b/src/qml/jsruntime/qv4regexpobject_p.h
@@ -146,7 +146,7 @@ struct RegExpPrototype: RegExpObject
};
inline Heap::RegExpPrototype::RegExpPrototype(ExecutionEngine *e)
- : RegExpObject(e->emptyClass, e->objectPrototype.objectValue())
+ : RegExpObject(e->emptyClass, e->objectPrototype())
{
}