aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertycache_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-04-19 10:59:41 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-19 13:07:10 +0200
commit3e08aa42497f7d264be039f31f4eedf639eda307 (patch)
tree871ee4f38715ab0111fe8e2c49756ca60390898e /src/qml/qml/qqmlpropertycache_p.h
parent190b376859ae9709e887886fcbaa56d60495be66 (diff)
Rename QQmlV8Handle to QQmlV4Handle
The handle wraps a V4 Value, so this is the better name for it. Also added some accessor methods to convert to and from V4 Values. Change-Id: I327c83feb5bd3be59909001489979e5a3a9d9e67 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlpropertycache_p.h')
-rw-r--r--src/qml/qml/qqmlpropertycache_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/qml/qqmlpropertycache_p.h b/src/qml/qml/qqmlpropertycache_p.h
index 63b8b79fd2..960f3e55d8 100644
--- a/src/qml/qml/qqmlpropertycache_p.h
+++ b/src/qml/qml/qqmlpropertycache_p.h
@@ -101,7 +101,7 @@ public:
IsQList = 0x00000800, // Property type is a QML list
IsQmlBinding = 0x00001000, // Property type is a QQmlBinding*
IsQJSValue = 0x00002000, // Property type is a QScriptValue
- IsV8Handle = 0x00004000, // Property type is a QQmlV8Handle
+ IsV4Handle = 0x00004000, // Property type is a QQmlV4Handle
IsVarProperty = 0x00008000, // Property type is a "var" property of VMEMO
IsValueTypeVirtual = 0x00010000, // Property is a value type "virtual" property
IsQVariant = 0x00020000, // Property is a QVariant
@@ -121,7 +121,7 @@ public:
// Flags that are set based on the propType field
PropTypeFlagMask = IsQObjectDerived | IsEnumType | IsQList | IsQmlBinding | IsQJSValue |
- IsV8Handle | IsQVariant,
+ IsV4Handle | IsQVariant,
};
Q_DECLARE_FLAGS(Flags, Flag)
@@ -144,7 +144,7 @@ public:
bool isQList() const { return flags & IsQList; }
bool isQmlBinding() const { return flags & IsQmlBinding; }
bool isQJSValue() const { return flags & IsQJSValue; }
- bool isV8Handle() const { return flags & IsV8Handle; }
+ bool isV4Handle() const { return flags & IsV4Handle; }
bool isVarProperty() const { return flags & IsVarProperty; }
bool isValueTypeVirtual() const { return flags & IsValueTypeVirtual; }
bool isQVariant() const { return flags & IsQVariant; }