aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-02-13 08:29:56 +0100
committerLars Knoll <lars.knoll@digia.com>2015-03-20 11:16:50 +0000
commit2a4e835a7de4019b8ab44067566e4f6eba0fa370 (patch)
treec2736e7797e939c8dc892284e9a9077b3f59b080 /src/qml/jsruntime/qv4object_p.h
parent3a41146b7864e8477b1f04d020725c008f86f3bc (diff)
Wrap members in Object in a Heap::Pointer
Change-Id: I0d132592487255027c215da21fbec15b23b00624 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4object_p.h')
-rw-r--r--src/qml/jsruntime/qv4object_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h
index a8bd97b7c1..6d725353f9 100644
--- a/src/qml/jsruntime/qv4object_p.h
+++ b/src/qml/jsruntime/qv4object_p.h
@@ -56,8 +56,8 @@ struct Object : Base {
InternalClass *internalClass;
Pointer<Object> prototype;
- MemberData *memberData;
- ArrayData *arrayData;
+ Pointer<MemberData> memberData;
+ Pointer<ArrayData> arrayData;
};
}