aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-01-20 12:15:26 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-21 08:18:41 +0100
commitc1c9ce91b35e445f8c4cece1e994882c2293cd3f (patch)
treef95246e9eeda97aac2976cea9786de3106ed43d8 /src/qml/jsruntime/qv4object.cpp
parent65ec0ab2e432139a2befe887ed9af4603ee1ae03 (diff)
Adjust method naming to be closer to Managed
Also make markObjects() virtual, to be in line with Managed. Change-Id: I3e7682216660e2027c02c9181e541b12310902f3 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4object.cpp')
-rw-r--r--src/qml/jsruntime/qv4object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4object.cpp b/src/qml/jsruntime/qv4object.cpp
index 5c6a648a94..43e0808a24 100644
--- a/src/qml/jsruntime/qv4object.cpp
+++ b/src/qml/jsruntime/qv4object.cpp
@@ -92,7 +92,7 @@ Object::~Object()
if (memberData != inlineProperties)
delete [] memberData;
if (arrayData)
- arrayData->free();
+ arrayData->destroy();
_data = 0;
}