diff options
author | Lars Knoll <[email protected]> | 2014-11-04 15:25:09 +0100 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2014-11-08 19:48:00 +0100 |
commit | 980e7fae0a010d519907a58ab891cc6ca94eb56a (patch) | |
tree | 3d0aec781e52b49beeaf3ef990e9196746fb6a06 /src/qml/jsruntime/qv4booleanobject.cpp | |
parent | f3f86c5eaed6940c6b90132c811cbf04ff9a8e81 (diff) |
Move Data of Variant and ArgumentsObject into Heap namespace
Change-Id: Id2092a15c9fb5341d9b5cf4a9ac7a978308e4174
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4booleanobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4booleanobject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4booleanobject.cpp b/src/qml/jsruntime/qv4booleanobject.cpp index 345d32f3bd..6de7059034 100644 --- a/src/qml/jsruntime/qv4booleanobject.cpp +++ b/src/qml/jsruntime/qv4booleanobject.cpp @@ -38,10 +38,10 @@ using namespace QV4; DEFINE_OBJECT_VTABLE(BooleanCtor); DEFINE_OBJECT_VTABLE(BooleanObject); -BooleanCtor::Data::Data(ExecutionContext *scope) +Heap::BooleanCtor::BooleanCtor(QV4::ExecutionContext *scope) : Heap::FunctionObject(scope, QStringLiteral("Boolean")) { - setVTable(staticVTable()); + setVTable(QV4::BooleanCtor::staticVTable()); } ReturnedValue BooleanCtor::construct(Managed *m, CallData *callData) |