aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4globalobject_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-12 11:13:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-18 13:13:47 +0200
commit16f92ad85cf665d863ded5eeaaa7fc3f90820b3f (patch)
tree74b3477b9d6c023730835f1c478ceb6eaec68a2b /src/qml/jsruntime/qv4globalobject_p.h
parent7d4e61dd824706984030c58684fa844ff9cde251 (diff)
Convert builtin methods to return a ReturnedValue
Change-Id: I6b75adbf53a5be0deab023d2eed98ce2a7915551 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4globalobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4globalobject_p.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/qml/jsruntime/qv4globalobject_p.h b/src/qml/jsruntime/qv4globalobject_p.h
index c58078c26d..b9219a210c 100644
--- a/src/qml/jsruntime/qv4globalobject_p.h
+++ b/src/qml/jsruntime/qv4globalobject_p.h
@@ -63,16 +63,16 @@ protected:
struct GlobalFunctions
{
- static Value method_parseInt(SimpleCallContext *context);
- static Value method_parseFloat(SimpleCallContext *context);
- static Value method_isNaN(SimpleCallContext *context);
- static Value method_isFinite(SimpleCallContext *context);
- static Value method_decodeURI(SimpleCallContext *context);
- static Value method_decodeURIComponent(SimpleCallContext *context);
- static Value method_encodeURI(SimpleCallContext *context);
- static Value method_encodeURIComponent(SimpleCallContext *context);
- static Value method_escape(SimpleCallContext *context);
- static Value method_unescape(SimpleCallContext *context);
+ static ReturnedValue method_parseInt(SimpleCallContext *context);
+ static ReturnedValue method_parseFloat(SimpleCallContext *context);
+ static ReturnedValue method_isNaN(SimpleCallContext *context);
+ static ReturnedValue method_isFinite(SimpleCallContext *context);
+ static ReturnedValue method_decodeURI(SimpleCallContext *context);
+ static ReturnedValue method_decodeURIComponent(SimpleCallContext *context);
+ static ReturnedValue method_encodeURI(SimpleCallContext *context);
+ static ReturnedValue method_encodeURIComponent(SimpleCallContext *context);
+ static ReturnedValue method_escape(SimpleCallContext *context);
+ static ReturnedValue method_unescape(SimpleCallContext *context);
};
}