aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertycache_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlpropertycache_p.h')
-rw-r--r--src/qml/qml/qqmlpropertycache_p.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/qml/qml/qqmlpropertycache_p.h b/src/qml/qml/qqmlpropertycache_p.h
index 6d3c4a8a7e..8a1f3810aa 100644
--- a/src/qml/qml/qqmlpropertycache_p.h
+++ b/src/qml/qml/qqmlpropertycache_p.h
@@ -177,9 +177,6 @@ public:
int propType() const { Q_ASSERT(isFullyResolved()); return _propType; }
void setPropType(int pt) { _propType = pt; }
- const char *propTypeName() const { Q_ASSERT(!isFullyResolved()); return _propTypeName; }
- void setPropTypeName(const char *ptn) { _propTypeName = ptn; }
-
int notifyIndex() const { return _notifyIndex; }
void setNotifyIndex(int idx) { _notifyIndex = idx; }
@@ -220,10 +217,7 @@ public:
void setCoreIndex(int idx) { _coreIndex = idx; }
private:
- union {
- int _propType; // When !NotFullyResolved
- const char *_propTypeName; // When NotFullyResolved
- };
+ int _propType; // When !NotFullyResolved
union {
// The notify index is in the range returned by QObjectPrivate::signalIndex().
// This is different from QMetaMethod::methodIndex().