aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlcontext_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlcontext_p.h')
-rw-r--r--src/qml/qml/qqmlcontext_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/qml/qqmlcontext_p.h b/src/qml/qml/qqmlcontext_p.h
index 0a0720a99d..9fd9a107bc 100644
--- a/src/qml/qml/qqmlcontext_p.h
+++ b/src/qml/qml/qqmlcontext_p.h
@@ -56,7 +56,6 @@
#include "qqmlcontext.h"
#include "qqmldata_p.h"
-#include "qqmlintegercache_p.h"
#include "qqmltypenamecache_p.h"
#include "qqmlnotifier_p.h"
#include "qqmllist.h"
@@ -70,6 +69,7 @@
#include <private/qflagpointer_p.h>
#include <private/qqmlguard_p.h>
+#include <private/qv4identifier_p.h>
QT_BEGIN_NAMESPACE
@@ -152,7 +152,7 @@ public:
void *activeVMEData;
// Property name cache
- QQmlIntegerCache *propertyNames;
+ QV4::IdentifierIntHash propertyNames;
// Context object
QObject *contextObject;
@@ -198,7 +198,7 @@ public:
ContextGuard *idValues;
int idValueCount;
void setIdProperty(int, QObject *);
- void setIdPropertyData(QQmlIntegerCache *);
+ void setIdPropertyData(const QV4::IdentifierIntHash &);
// Linked contexts. this owns linkedContext.
QQmlContextData *linkedContext;