From 86f88521fbea59e8ec53e50cc1e3e68a61f53c40 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Sat, 23 Jun 2018 22:25:53 +0200 Subject: Replace Identifier by PropertyKey Change all uses of Identifier to use the new PropertyKey class and get rid of Identifier. Change-Id: Ib7e83b06a3c923235e145b6e083fe980dc240452 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4stringobject_p.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qml/jsruntime/qv4stringobject_p.h') diff --git a/src/qml/jsruntime/qv4stringobject_p.h b/src/qml/jsruntime/qv4stringobject_p.h index af53be0ada..6b3861d6ed 100644 --- a/src/qml/jsruntime/qv4stringobject_p.h +++ b/src/qml/jsruntime/qv4stringobject_p.h @@ -100,9 +100,9 @@ struct StringObject: Object { using Object::getOwnProperty; protected: - static bool deleteProperty(Managed *m, Identifier id); + static bool deleteProperty(Managed *m, PropertyKey id); static void advanceIterator(Managed *m, ObjectIterator *it, Value *name, uint *index, Property *p, PropertyAttributes *attrs); - static PropertyAttributes getOwnProperty(Managed *m, Identifier id, Property *p); + static PropertyAttributes getOwnProperty(Managed *m, PropertyKey id, Property *p); }; struct StringCtor: FunctionObject -- cgit v1.2.3