aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-04-14 12:04:59 +0200
committerLars Knoll <lars.knoll@qt.io>2018-05-02 14:19:32 +0000
commitcf4a68d5bc85877e1166117aa0d4c520509d1c0e (patch)
treed85c79985e3a605ca44b279c2a14dc1a77b5ede2 /src/qml/jsruntime/qv4object.cpp
parent68a71b7136cfeb010eebea6c14b138aa2a9f3d6a (diff)
Don't use stringForId() anymore
The identifier has a backpointer to it's heap object, which could also be a symbol. Change-Id: I976db1424ec66f8e41e6ce4d76620c6b57d94a62 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
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 261e99b168..7bb339bf0d 100644
--- a/src/qml/jsruntime/qv4object.cpp
+++ b/src/qml/jsruntime/qv4object.cpp
@@ -546,7 +546,7 @@ void Object::advanceIterator(Managed *m, ObjectIterator *it, Value *name, uint *
PropertyAttributes a = o->internalClass()->propertyData[it->memberIndex];
++it->memberIndex;
if (!(it->flags & ObjectIterator::EnumerableOnly) || a.isEnumerable()) {
- name->setM(o->engine()->identifierTable->stringForId(n));
+ name->setM(n.asHeapObject());
*attrs = a;
pd->value = *o->propertyData(idx);
if (a.isAccessor())