aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertycache_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-05-22 10:46:09 +0200
committerLars Knoll <lars.knoll@digia.com>2013-05-22 16:11:51 +0200
commit190d12aa6ad9f3f4d9787fb23740d0d8b44e8635 (patch)
treec56cd2399337771608f0dcf5dc0e85356d7e8d2f /src/qml/qml/qqmlpropertycache_p.h
parenta12cc118ddce1615425ddf12296584d34acf57cc (diff)
Cleanup: It's QQmlV4Function and so the flag should also be called V4Function instead of V8Function
Change-Id: I6d4d258e1fcad9097eb898f0b092f564cd4078ad Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlpropertycache_p.h')
-rw-r--r--src/qml/qml/qqmlpropertycache_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlpropertycache_p.h b/src/qml/qml/qqmlpropertycache_p.h
index 15bd83fcb3..b7e0a525b7 100644
--- a/src/qml/qml/qqmlpropertycache_p.h
+++ b/src/qml/qml/qqmlpropertycache_p.h
@@ -113,7 +113,7 @@ public:
HasArguments = 0x00080000, // Function takes arguments
IsSignal = 0x00100000, // Function is a signal
IsVMESignal = 0x00200000, // Signal was added by QML
- IsV8Function = 0x00400000, // Function takes QQmlV8Function* args
+ IsV4Function = 0x00400000, // Function takes QQmlV4Function* args
IsSignalHandler = 0x00800000, // Function is a signal handler
IsOverload = 0x01000000, // Function is an overload of another function
IsCloned = 0x02000000, // The function was marked as cloned
@@ -154,7 +154,7 @@ public:
bool hasArguments() const { return flags & HasArguments; }
bool isSignal() const { return flags & IsSignal; }
bool isVMESignal() const { return flags & IsVMESignal; }
- bool isV8Function() const { return flags & IsV8Function; }
+ bool isV4Function() const { return flags & IsV4Function; }
bool isSignalHandler() const { return flags & IsSignalHandler; }
bool isOverload() const { return flags & IsOverload; }
bool isCloned() const { return flags & IsCloned; }