aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4string.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-06-23 23:27:14 +0200
committerLars Knoll <lars.knoll@qt.io>2018-07-02 19:29:47 +0000
commitf1703895e2fc9ec5da3a38a3ffef927a8f4ed86c (patch)
treed5bc803ce71530f0c762f82f0a73ae04cfcbc03f /src/qml/jsruntime/qv4string.cpp
parent56bff8f7abc2f0eeadd4d197667132af6eed6f3a (diff)
Rename IdentifierTable methods
identifier -> asPropertyKey Change-Id: I4e6f33bdad12e901303ec6101dd2b8d6b0e99ac4 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4string.cpp')
-rw-r--r--src/qml/jsruntime/qv4string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4string.cpp b/src/qml/jsruntime/qv4string.cpp
index 7c1aef482a..cd8b1b6da1 100644
--- a/src/qml/jsruntime/qv4string.cpp
+++ b/src/qml/jsruntime/qv4string.cpp
@@ -171,7 +171,7 @@ void String::createPropertyKeyImpl() const
if (!d()->text)
d()->simplifyString();
Q_ASSERT(d()->text);
- engine()->identifierTable->identifier(this);
+ engine()->identifierTable->asPropertyKey(this);
}
void Heap::String::simplifyString() const