aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4string_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4string_p.h')
-rw-r--r--src/qml/jsruntime/qv4string_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4string_p.h b/src/qml/jsruntime/qv4string_p.h
index 2e3ca977bf..81cb54d9cc 100644
--- a/src/qml/jsruntime/qv4string_p.h
+++ b/src/qml/jsruntime/qv4string_p.h
@@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
namespace QV4 {
struct ExecutionEngine;
-struct Identifier;
+struct PropertyKey;
namespace Heap {
@@ -77,7 +77,7 @@ struct Q_QML_PRIVATE_EXPORT StringOrSymbol : Base
};
mutable QStringData *text;
- mutable Identifier identifier;
+ mutable PropertyKey identifier;
mutable uint subtype;
mutable uint stringHash;
@@ -174,11 +174,11 @@ struct Q_QML_PRIVATE_EXPORT StringOrSymbol : public Managed {
};
inline void makeIdentifier() const;
- Identifier identifier() const { return d()->identifier; }
+ PropertyKey identifier() const { return d()->identifier; }
uint asArrayIndex() const;
- Identifier toPropertyKey() const;
+ PropertyKey toPropertyKey() const;
inline QString toQString() const {
return d()->toQString();