aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4dataview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4dataview.cpp')
-rw-r--r--src/qml/jsruntime/qv4dataview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4dataview.cpp b/src/qml/jsruntime/qv4dataview.cpp
index 717a8f681f..11cb04e22f 100644
--- a/src/qml/jsruntime/qv4dataview.cpp
+++ b/src/qml/jsruntime/qv4dataview.cpp
@@ -85,10 +85,10 @@ DataView::Data::Data(ExecutionEngine *e)
}
-void DataView::markObjects(Managed *that, ExecutionEngine *e)
+void DataView::markObjects(HeapObject *that, ExecutionEngine *e)
{
- DataView *v = static_cast<DataView *>(that);
- v->d()->buffer->mark(e);
+ DataView::Data *v = static_cast<DataView::Data *>(that);
+ v->buffer->mark(e);
}
void DataViewPrototype::init(ExecutionEngine *engine, Object *ctor)