diff options
author | Lars Knoll <[email protected]> | 2014-11-03 03:17:57 +0100 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2014-11-08 19:47:34 +0100 |
commit | ef8ad8234b481d3985d748f7607ef486e1af086f (patch) | |
tree | 56f6be7ff0746449847399903d2269ef4a08a741 /src/qml/jsruntime/qv4regexpobject.cpp | |
parent | aeb7d3ebbbc5ac16bf7b2f08874f13912b683007 (diff) |
Move Data of FunctionObject and related classes into Heap
Change-Id: Iadf74f953798c1884e0ec704ccb7c70d971e3273
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4regexpobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject.cpp b/src/qml/jsruntime/qv4regexpobject.cpp index ca28a902fd..5c729656ef 100644 --- a/src/qml/jsruntime/qv4regexpobject.cpp +++ b/src/qml/jsruntime/qv4regexpobject.cpp @@ -230,7 +230,7 @@ uint RegExpObject::flags() const DEFINE_OBJECT_VTABLE(RegExpCtor); RegExpCtor::Data::Data(ExecutionContext *scope) - : FunctionObject::Data(scope, QStringLiteral("RegExp")) + : Heap::FunctionObject(scope, QStringLiteral("RegExp")) { setVTable(staticVTable()); clearLastMatch(); |