aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4object_p.h')
-rw-r--r--src/qml/jsruntime/qv4object_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h
index aca4f99750..c9b0ff7e1f 100644
--- a/src/qml/jsruntime/qv4object_p.h
+++ b/src/qml/jsruntime/qv4object_p.h
@@ -168,7 +168,7 @@ struct Q_QML_EXPORT Object: Managed {
const VTable *vtable() const { return d()->vtable(); }
- PropertyAttributes getOwnProperty(PropertyKey id, Property *p = nullptr) {
+ PropertyAttributes getOwnProperty(PropertyKey id, Property *p = nullptr) const {
return vtable()->getOwnProperty(this, id, p);
}
@@ -373,7 +373,7 @@ protected:
static bool virtualPut(Managed *m, PropertyKey id, const Value &value, Value *receiver);
static bool virtualDeleteProperty(Managed *m, PropertyKey id);
static bool virtualHasProperty(const Managed *m, PropertyKey id);
- static PropertyAttributes virtualGetOwnProperty(Managed *m, PropertyKey id, Property *p);
+ static PropertyAttributes virtualGetOwnProperty(const Managed *m, PropertyKey id, Property *p);
static bool virtualDefineOwnProperty(Managed *m, PropertyKey id, const Property *p, PropertyAttributes attrs);
static bool virtualIsExtensible(const Managed *m);
static bool virtualPreventExtensions(Managed *);