aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4scopedvalue_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-01-05 15:14:37 +0100
committerLars Knoll <lars.knoll@qt.io>2017-01-25 08:31:21 +0000
commit119e2edb3ea52a6b3b9da6183dc0fcf350ba8431 (patch)
tree40de3542e30d2de31f336409a9030d76a5d34cc4 /src/qml/jsruntime/qv4scopedvalue_p.h
parentafc29a54791e70264f7c175b2da0a234f791f749 (diff)
Convert more builtin functions
Change-Id: I2dc8797e2240fcfc4176cb08b982e3e98b879646 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4scopedvalue_p.h')
-rw-r--r--src/qml/jsruntime/qv4scopedvalue_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4scopedvalue_p.h b/src/qml/jsruntime/qv4scopedvalue_p.h
index 379c3babda..6cdc6200e7 100644
--- a/src/qml/jsruntime/qv4scopedvalue_p.h
+++ b/src/qml/jsruntime/qv4scopedvalue_p.h
@@ -71,14 +71,14 @@ struct ScopedValue;
#define CHECK_EXCEPTION() \
do { \
if (scope.hasException()) { \
- scope.result = Encode::undefined(); \
+ scope.result = QV4::Encode::undefined(); \
return; \
} \
} while (false)
#define RETURN_UNDEFINED() \
do { \
- scope.result = Encode::undefined(); \
+ scope.result = QV4::Encode::undefined(); \
return; \
} while (false)