aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/qv4globalobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/qv4globalobject.h')
-rw-r--r--src/v4/qv4globalobject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/v4/qv4globalobject.h b/src/v4/qv4globalobject.h
index 8d9341f066..d67f6d63cc 100644
--- a/src/v4/qv4globalobject.h
+++ b/src/v4/qv4globalobject.h
@@ -73,16 +73,16 @@ protected:
struct GlobalFunctions
{
- static Value method_parseInt(ExecutionContext *context);
- static Value method_parseFloat(ExecutionContext *context);
- static Value method_isNaN(ExecutionContext *context);
- static Value method_isFinite(ExecutionContext *context);
+ static Value method_parseInt(CallContext *context);
+ static Value method_parseFloat(CallContext *context);
+ static Value method_isNaN(CallContext *context);
+ static Value method_isFinite(CallContext *context);
static Value method_decodeURI(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
static Value method_decodeURIComponent(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
static Value method_encodeURI(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
static Value method_encodeURIComponent(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
- static Value method_escape(ExecutionContext *context);
- static Value method_unescape(ExecutionContext *context);
+ static Value method_escape(CallContext *context);
+ static Value method_unescape(CallContext *context);
};
} // namespace VM