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
c199a468
Commit
c199a468
authored
Mar 21, 2011
by
Austin English
Committed by
Alexandre Julliard
Mar 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Avoid shadowing a parameter.
parent
9701621f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
htmlwindow.c
dlls/mshtml/htmlwindow.c
+4
-4
No files found.
dlls/mshtml/htmlwindow.c
View file @
c199a468
...
...
@@ -2148,22 +2148,22 @@ static HRESULT HTMLWindow_invoke(DispatchEx *dispex, DISPID id, LCID lcid, WORD
switch
(
prop
->
type
)
{
case
GLOBAL_SCRIPTVAR
:
{
IDispatchEx
*
dispex
;
IDispatchEx
*
iface
;
IDispatch
*
disp
;
disp
=
get_script_disp
(
prop
->
script_host
);
if
(
!
disp
)
return
E_UNEXPECTED
;
hres
=
IDispatch_QueryInterface
(
disp
,
&
IID_IDispatchEx
,
(
void
**
)
&
dispex
);
hres
=
IDispatch_QueryInterface
(
disp
,
&
IID_IDispatchEx
,
(
void
**
)
&
iface
);
if
(
SUCCEEDED
(
hres
))
{
TRACE
(
"%s >>>
\n
"
,
debugstr_w
(
prop
->
name
));
hres
=
IDispatchEx_InvokeEx
(
dispex
,
prop
->
id
,
lcid
,
flags
,
params
,
res
,
ei
,
caller
);
hres
=
IDispatchEx_InvokeEx
(
iface
,
prop
->
id
,
lcid
,
flags
,
params
,
res
,
ei
,
caller
);
if
(
hres
==
S_OK
)
TRACE
(
"%s <<<
\n
"
,
debugstr_w
(
prop
->
name
));
else
WARN
(
"%s <<< %08x
\n
"
,
debugstr_w
(
prop
->
name
),
hres
);
IDispatchEx_Release
(
dispex
);
IDispatchEx_Release
(
iface
);
}
else
{
FIXME
(
"No IDispatchEx
\n
"
);
}
...
...
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