Commit a373054b authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Remove unused prop_put arguments.

parent 23e4a530
...@@ -466,7 +466,7 @@ static HRESULT prop_get(jsdisp_t *This, dispex_prop_t *prop, jsval_t *r) ...@@ -466,7 +466,7 @@ static HRESULT prop_get(jsdisp_t *This, dispex_prop_t *prop, jsval_t *r)
return hres; return hres;
} }
static HRESULT prop_put(jsdisp_t *This, dispex_prop_t *prop, jsval_t val, IServiceProvider *caller) static HRESULT prop_put(jsdisp_t *This, dispex_prop_t *prop, jsval_t val)
{ {
HRESULT hres; HRESULT hres;
...@@ -728,7 +728,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc ...@@ -728,7 +728,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
if(FAILED(hres)) if(FAILED(hres))
return hres; return hres;
hres = prop_put(This, prop, val, pspCaller); hres = prop_put(This, prop, val);
jsval_release(val); jsval_release(val);
break; break;
} }
...@@ -1302,7 +1302,7 @@ HRESULT jsdisp_propput(jsdisp_t *obj, const WCHAR *name, DWORD flags, jsval_t va ...@@ -1302,7 +1302,7 @@ HRESULT jsdisp_propput(jsdisp_t *obj, const WCHAR *name, DWORD flags, jsval_t va
if(FAILED(hres)) if(FAILED(hres))
return hres; return hres;
return prop_put(obj, prop, val, NULL); return prop_put(obj, prop, val);
} }
HRESULT jsdisp_propput_name(jsdisp_t *obj, const WCHAR *name, jsval_t val) HRESULT jsdisp_propput_name(jsdisp_t *obj, const WCHAR *name, jsval_t val)
...@@ -1348,7 +1348,7 @@ HRESULT disp_propput(script_ctx_t *ctx, IDispatch *disp, DISPID id, jsval_t val) ...@@ -1348,7 +1348,7 @@ HRESULT disp_propput(script_ctx_t *ctx, IDispatch *disp, DISPID id, jsval_t val)
prop = get_prop(jsdisp, id); prop = get_prop(jsdisp, id);
if(prop) if(prop)
hres = prop_put(jsdisp, prop, val, NULL); hres = prop_put(jsdisp, prop, val);
else else
hres = DISP_E_MEMBERNOTFOUND; hres = DISP_E_MEMBERNOTFOUND;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment