aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4stringobject.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-09-18 10:38:53 +0200
committerLars Knoll <lars.knoll@qt.io>2018-09-23 17:27:31 +0000
commitc7d097297d789dd7c32a77d8a038067db364734b (patch)
tree23b79aace557bb156b70d7ee8a53ff6c4b05dadd /src/qml/jsruntime/qv4stringobject.cpp
parentbdf948b79db38ec02e89b64fd13b7146dd3f135c (diff)
Make Object::getOwnProperty() const
Object::getOwnProperty never modifies the object, so make it a const member function. Change-Id: I175bb45d61a66a1d9f577c087129562d44d62e17 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4stringobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4stringobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4stringobject.cpp b/src/qml/jsruntime/qv4stringobject.cpp
index 55438465ad..f6b9c5ba94 100644
--- a/src/qml/jsruntime/qv4stringobject.cpp
+++ b/src/qml/jsruntime/qv4stringobject.cpp
@@ -146,18 +146,18 @@ OwnPropertyKeyIterator *StringObject::virtualOwnPropertyKeys(const Object *m, Va
return new StringObjectOwnPropertyKeyIterator;
}
-PropertyAttributes StringObject::virtualGetOwnProperty(Managed *m, PropertyKey id, Property *p)
+PropertyAttributes StringObject::virtualGetOwnProperty(const Managed *m, PropertyKey id, Property *p)
{
PropertyAttributes attributes = Object::virtualGetOwnProperty(m, id, p);
if (attributes != Attr_Invalid)
return attributes;
- StringObject *s = static_cast<StringObject *>(m);
+ const StringObject *s = static_cast<const StringObject *>(m);
uint slen = s->d()->string->toQString().length();
uint index = id.asArrayIndex();
if (index < slen) {
if (p)
- p->value = static_cast<StringObject *>(s)->getIndex(index);
+ p->value = s->getIndex(index);
return Attr_NotConfigurable|Attr_NotWritable;
}
return Object::virtualGetOwnProperty(m, id, p);