aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4globalobject_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-16 22:02:27 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-22 01:06:20 +0200
commite441692b0b8f8fffdfdfa8a21c570adcd5cbae7a (patch)
tree9b764401d87682012328c46dc947721f47b428b2 /src/qml/jsruntime/qv4globalobject_p.h
parenta0f8be4021caa9bb5055923f0eea3bee0e345235 (diff)
Further work towards an exact GC
Add some more convenience in the helper classes in qscopedvalue_p.h Make accesses to CallData safer, and change ExecutionEngine::newObject() to return a safe pointer. Change-Id: I980909754ce9681cf6faa1355bab3a1e5d6dd186 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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4globalobject_p.h b/src/qml/jsruntime/qv4globalobject_p.h
index 90b3395baa..f49c8ebbb8 100644
--- a/src/qml/jsruntime/qv4globalobject_p.h
+++ b/src/qml/jsruntime/qv4globalobject_p.h
@@ -64,7 +64,7 @@ struct GlobalFunctions
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_isFinite(SimpleCallContext *ctx);
static ReturnedValue method_decodeURI(SimpleCallContext *context);
static ReturnedValue method_decodeURIComponent(SimpleCallContext *context);
static ReturnedValue method_encodeURI(SimpleCallContext *context);