diff options
| author | Lars Knoll <lars.knoll@theqtcompany.com> | 2014-11-01 23:50:32 +0100 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@digia.com> | 2014-11-08 16:39:32 +0100 |
| commit | c2da8abde56d2010d3e7cb234570079f06d8a441 (patch) | |
| tree | e3185e7f99c66130d615e855af3435ba102d51a4 /src/qml/jsruntime/qv4functionobject.cpp | |
| parent | da2396478f04aa66d521e53ff24488e72c87d895 (diff) | |
Move Object::Data into the Heap namespace
Change-Id: I9d30081f71b83bc86f5e5714e23396b18c4d54c5
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4functionobject.cpp')
| -rw-r--r-- | src/qml/jsruntime/qv4functionobject.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4functionobject.cpp b/src/qml/jsruntime/qv4functionobject.cpp index 216f732231..cfe4af9be3 100644 --- a/src/qml/jsruntime/qv4functionobject.cpp +++ b/src/qml/jsruntime/qv4functionobject.cpp @@ -63,7 +63,7 @@ using namespace QV4; DEFINE_OBJECT_VTABLE(FunctionObject); FunctionObject::Data::Data(ExecutionContext *scope, String *name, bool createProto) - : Object::Data(scope->d()->engine->functionClass) + : Heap::Object(scope->d()->engine->functionClass) , scope(scope) { Scope s(scope); @@ -73,7 +73,7 @@ FunctionObject::Data::Data(ExecutionContext *scope, String *name, bool createPro FunctionObject::Data::Data(ExecutionContext *scope, const QString &name, bool createProto) - : Object::Data(scope->d()->engine->functionClass) + : Heap::Object(scope->d()->engine->functionClass) , scope(scope) { Scope s(scope); @@ -83,7 +83,7 @@ FunctionObject::Data::Data(ExecutionContext *scope, const QString &name, bool cr } FunctionObject::Data::Data(ExecutionContext *scope, const ReturnedValue name) - : Object::Data(scope->d()->engine->functionClass) + : Heap::Object(scope->d()->engine->functionClass) , scope(scope) { Scope s(scope); @@ -93,7 +93,7 @@ FunctionObject::Data::Data(ExecutionContext *scope, const ReturnedValue name) } FunctionObject::Data::Data(InternalClass *ic) - : Object::Data(ic) + : Heap::Object(ic) , scope(ic->engine->rootContext) { Scope scope(ic->engine); |
