summaryrefslogtreecommitdiffstats
path: root/JavaScriptGlue/UserObjectImp.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptGlue/UserObjectImp.h')
-rw-r--r--JavaScriptGlue/UserObjectImp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/JavaScriptGlue/UserObjectImp.h b/JavaScriptGlue/UserObjectImp.h
index 6f857f9..8dbad98 100644
--- a/JavaScriptGlue/UserObjectImp.h
+++ b/JavaScriptGlue/UserObjectImp.h
@@ -46,7 +46,7 @@ public:
virtual void getOwnPropertyNames(ExecState*, PropertyNameArray&, EnumerationMode mode = ExcludeDontEnumProperties);
- virtual JSValue callAsFunction(ExecState *exec, JSObject *thisObj, const ArgList &args);
+ virtual JSValue callAsFunction(ExecState *exec);
virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&);
virtual void put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&);
@@ -65,7 +65,7 @@ public:
}
private:
- static JSValue userObjectGetter(ExecState*, const Identifier& propertyName, const PropertySlot&);
+ static JSValue userObjectGetter(ExecState*, JSValue, const Identifier& propertyName);
JSUserObject* fJSUserObject;
};