Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a373054b
Commit
a373054b
authored
Apr 20, 2018
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Remove unused prop_put arguments.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
23e4a530
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dispex.c
dlls/jscript/dispex.c
+4
-4
No files found.
dlls/jscript/dispex.c
View file @
a373054b
...
...
@@ -466,7 +466,7 @@ static HRESULT prop_get(jsdisp_t *This, dispex_prop_t *prop, jsval_t *r)
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
;
...
...
@@ -728,7 +728,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
if
(
FAILED
(
hres
))
return
hres
;
hres
=
prop_put
(
This
,
prop
,
val
,
pspCaller
);
hres
=
prop_put
(
This
,
prop
,
val
);
jsval_release
(
val
);
break
;
}
...
...
@@ -1302,7 +1302,7 @@ HRESULT jsdisp_propput(jsdisp_t *obj, const WCHAR *name, DWORD flags, jsval_t va
if
(
FAILED
(
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
)
...
...
@@ -1348,7 +1348,7 @@ HRESULT disp_propput(script_ctx_t *ctx, IDispatch *disp, DISPID id, jsval_t val)
prop
=
get_prop
(
jsdisp
,
id
);
if
(
prop
)
hres
=
prop_put
(
jsdisp
,
prop
,
val
,
NULL
);
hres
=
prop_put
(
jsdisp
,
prop
,
val
);
else
hres
=
DISP_E_MEMBERNOTFOUND
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment