aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsapi/qjsvalueiterator_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-04-30 22:31:21 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-06-17 09:03:40 +0000
commitd6a1943b2410933046204102080536c4aade4442 (patch)
treeb45d924e5e84b9bbf20bad3d5b15108a38fab8e8 /src/qml/jsapi/qjsvalueiterator_p.h
parentbebf2acd9c58e3c55d1a394a101f0ae0ad2d83a2 (diff)
Simplify QJSValueIterator code and make it GC safe
Change-Id: Ie6e4c0d9b8a0b10bedfe32aa6344a2fa8a9a3eac Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsapi/qjsvalueiterator_p.h')
-rw-r--r--src/qml/jsapi/qjsvalueiterator_p.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/qml/jsapi/qjsvalueiterator_p.h b/src/qml/jsapi/qjsvalueiterator_p.h
index 0f5f98dd86..b0d0b2efda 100644
--- a/src/qml/jsapi/qjsvalueiterator_p.h
+++ b/src/qml/jsapi/qjsvalueiterator_p.h
@@ -48,14 +48,8 @@ public:
QJSValue value;
QV4::PersistentValue iterator;
- // ### GC
- QV4::Property currentProperty;
- QV4::PropertyAttributes currentAttributes;
QV4::PersistentValue currentName;
uint currentIndex;
- // ### GC
- QV4::Property nextProperty;
- QV4::PropertyAttributes nextAttributes;
QV4::PersistentValue nextName;
uint nextIndex;
};