aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4typedarray_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4typedarray_p.h')
-rw-r--r--src/qml/jsruntime/qv4typedarray_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4typedarray_p.h b/src/qml/jsruntime/qv4typedarray_p.h
index 2b266e5169..8294659fe1 100644
--- a/src/qml/jsruntime/qv4typedarray_p.h
+++ b/src/qml/jsruntime/qv4typedarray_p.h
@@ -67,7 +67,7 @@ struct TypedArray : Object
NTypes
};
- struct Data : Object::Data {
+ struct Data : Heap::Object {
Data(ExecutionEngine *e, Type t);
const TypedArrayOperations *type;
@@ -104,9 +104,9 @@ struct TypedArrayCtor: FunctionObject
struct TypedArrayPrototype : Object
{
- struct Data : Object::Data {
+ struct Data : Heap::Object {
Data(ExecutionEngine *e, TypedArray::Type t)
- : Object::Data(e)
+ : Heap::Object(e)
, type(t)
{
setVTable(staticVTable());