diff options
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(); |