aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4typedarray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4typedarray.cpp')
-rw-r--r--src/qml/jsruntime/qv4typedarray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4typedarray.cpp b/src/qml/jsruntime/qv4typedarray.cpp
index 7710bd6b26..d4b51c7214 100644
--- a/src/qml/jsruntime/qv4typedarray.cpp
+++ b/src/qml/jsruntime/qv4typedarray.cpp
@@ -194,7 +194,7 @@ const TypedArrayOperations operations[TypedArray::NTypes] = {
TypedArrayCtor::Data::Data(ExecutionContext *scope, TypedArray::Type t)
- : FunctionObject::Data(scope, QLatin1String(operations[t].name))
+ : Heap::FunctionObject(scope, QLatin1String(operations[t].name))
, type(t)
{
setVTable(staticVTable());