aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsapi/qjsvalueiterator_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsapi/qjsvalueiterator_p.h')
-rw-r--r--src/qml/jsapi/qjsvalueiterator_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsapi/qjsvalueiterator_p.h b/src/qml/jsapi/qjsvalueiterator_p.h
index 7687f896a1..b7a9b4a190 100644
--- a/src/qml/jsapi/qjsvalueiterator_p.h
+++ b/src/qml/jsapi/qjsvalueiterator_p.h
@@ -55,12 +55,12 @@ public:
QJSValueIteratorPrivate(const QJSValue &v);
QJSValue value;
- QV4::ObjectIterator iterator;
+ QV4::PersistentValue iterator;
QV4::PropertyAttributes currentAttributes;
- QV4::String *currentName;
+ QV4::SafeString currentName;
uint currentIndex;
QV4::PropertyAttributes nextAttributes;
- QV4::String *nextName;
+ QV4::SafeString nextName;
uint nextIndex;
};