aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmllistwrapper.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2014-11-07 02:06:42 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-10 17:15:22 +0100
commitfcf0203aafe6db09751835ce54fc32f51fc77d5a (patch)
treef5354c56af10c320b40fff9da4bba500ea8a1653 /src/qml/qml/qqmllistwrapper.cpp
parent4838cc89f000a2f1db4da6401fc79a75a7b86ad7 (diff)
Move data of more Qml related objects into Heap namespace.
Change-Id: Ifb3a7093351474d6feb2f64498b531c36fdf669b Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmllistwrapper.cpp')
-rw-r--r--src/qml/qml/qqmllistwrapper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/qml/qqmllistwrapper.cpp b/src/qml/qml/qqmllistwrapper.cpp
index cde406d8e0..0076933783 100644
--- a/src/qml/qml/qqmllistwrapper.cpp
+++ b/src/qml/qml/qqmllistwrapper.cpp
@@ -45,18 +45,18 @@ using namespace QV4;
DEFINE_OBJECT_VTABLE(QmlListWrapper);
-QmlListWrapper::Data::Data(QV8Engine *engine)
+Heap::QmlListWrapper::QmlListWrapper(QV8Engine *engine)
: Heap::Object(QV8Engine::getV4(engine))
, v8(engine)
{
- setVTable(staticVTable());
+ setVTable(QV4::QmlListWrapper::staticVTable());
QV4::Scope scope(QV8Engine::getV4(engine));
QV4::ScopedObject o(scope, this);
o->setArrayType(Heap::ArrayData::Custom);
}
-QmlListWrapper::Data::~Data()
+Heap::QmlListWrapper::~QmlListWrapper()
{
}