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
2e2f88af
Commit
2e2f88af
authored
Dec 31, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 31, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: COM cleanup for the IDispatchEx iface in HTMLWindow.
parent
00eb0271
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
41 deletions
+47
-41
htmldoc.c
dlls/mshtml/htmldoc.c
+2
-2
htmlframe.c
dlls/mshtml/htmlframe.c
+2
-1
htmliframe.c
dlls/mshtml/htmliframe.c
+2
-1
htmlwindow.c
dlls/mshtml/htmlwindow.c
+40
-36
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-1
No files found.
dlls/mshtml/htmldoc.c
View file @
2e2f88af
...
...
@@ -1636,8 +1636,8 @@ static HRESULT WINAPI DocDispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID
HTMLDocument
*
This
=
impl_from_IDispatchEx
(
iface
);
if
(
This
->
window
&&
id
==
DISPID_IHTMLDOCUMENT2_LOCATION
&&
(
wFlags
&
DISPATCH_PROPERTYPUT
))
return
IDispatchEx_InvokeEx
(
DISPATCHEX
(
This
->
window
),
DISPID_IHTMLWINDOW2_LOCATION
,
lcid
,
wFlags
,
pdp
,
pvarRes
,
pei
,
pspCaller
);
return
IDispatchEx_InvokeEx
(
&
This
->
window
->
IDispatchEx_iface
,
DISPID_IHTMLWINDOW2_LOCATION
,
lcid
,
wFlags
,
pdp
,
pvarRes
,
pei
,
pspCaller
);
return
IDispatchEx_InvokeEx
(
This
->
dispex
,
id
,
lcid
,
wFlags
,
pdp
,
pvarRes
,
pei
,
pspCaller
);
...
...
dlls/mshtml/htmlframe.c
View file @
2e2f88af
...
...
@@ -241,7 +241,8 @@ static HRESULT HTMLFrameElement_invoke(HTMLDOMNode *iface, DISPID id, LCID lcid,
return
E_FAIL
;
}
return
IDispatchEx_InvokeEx
(
DISPATCHEX
(
This
->
framebase
.
content_window
),
id
,
lcid
,
flags
,
params
,
res
,
ei
,
caller
);
return
IDispatchEx_InvokeEx
(
&
This
->
framebase
.
content_window
->
IDispatchEx_iface
,
id
,
lcid
,
flags
,
params
,
res
,
ei
,
caller
);
}
static
HRESULT
HTMLFrameElement_bind_to_tree
(
HTMLDOMNode
*
iface
)
...
...
dlls/mshtml/htmliframe.c
View file @
2e2f88af
...
...
@@ -212,7 +212,8 @@ static HRESULT HTMLIFrame_invoke(HTMLDOMNode *iface, DISPID id, LCID lcid,
return
E_FAIL
;
}
return
IDispatchEx_InvokeEx
(
DISPATCHEX
(
This
->
framebase
.
content_window
),
id
,
lcid
,
flags
,
params
,
res
,
ei
,
caller
);
return
IDispatchEx_InvokeEx
(
&
This
->
framebase
.
content_window
->
IDispatchEx_iface
,
id
,
lcid
,
flags
,
params
,
res
,
ei
,
caller
);
}
static
HRESULT
HTMLIFrame_get_readystate
(
HTMLDOMNode
*
iface
,
BSTR
*
p
)
...
...
dlls/mshtml/htmlwindow.c
View file @
2e2f88af
This diff is collapsed.
Click to expand it.
dlls/mshtml/mshtml_private.h
View file @
2e2f88af
...
...
@@ -266,7 +266,7 @@ struct HTMLWindow {
IHTMLWindow3
IHTMLWindow3_iface
;
IHTMLWindow4
IHTMLWindow4_iface
;
IHTMLPrivateWindow
IHTMLPrivateWindow_iface
;
const
IDispatchExVtbl
*
lpIDispatchExVtbl
;
IDispatchEx
IDispatchEx_iface
;
IServiceProvider
IServiceProvider_iface
;
LONG
ref
;
...
...
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