aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativepropertycache_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/qdeclarativepropertycache_p.h')
-rw-r--r--src/declarative/qml/qdeclarativepropertycache_p.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/declarative/qml/qdeclarativepropertycache_p.h b/src/declarative/qml/qdeclarativepropertycache_p.h
index eeeff1aea1..65a8725b8f 100644
--- a/src/declarative/qml/qdeclarativepropertycache_p.h
+++ b/src/declarative/qml/qdeclarativepropertycache_p.h
@@ -84,20 +84,21 @@ public:
IsWritable = 0x00000002,
IsResettable = 0x00000004,
IsAlias = 0x00000008,
+ IsFinal = 0x00000010,
// These are mutualy exclusive
- IsFunction = 0x00000010,
- IsQObjectDerived = 0x00000020,
- IsEnumType = 0x00000040,
- IsQList = 0x00000080,
- IsQmlBinding = 0x00000100,
- IsQScriptValue = 0x00000200,
+ IsFunction = 0x00000020,
+ IsQObjectDerived = 0x00000040,
+ IsEnumType = 0x00000080,
+ IsQList = 0x00000100,
+ IsQmlBinding = 0x00000200,
+ IsQScriptValue = 0x00000400,
// Apply only to IsFunctions
- IsVMEFunction = 0x00000400,
- HasArguments = 0x00000800,
- IsSignal = 0x00001000,
- IsVMESignal = 0x00002000
+ IsVMEFunction = 0x00000800,
+ HasArguments = 0x00001000,
+ IsSignal = 0x00002000,
+ IsVMESignal = 0x00004000
};
Q_DECLARE_FLAGS(Flags, Flag)