Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
aee6a2d8
Commit
aee6a2d8
authored
Sep 01, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make IHTMLBodyElement use correct IDispatchEx interface.
parent
e28098ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
htmlbody.c
dlls/mshtml/htmlbody.c
+24
-0
No files found.
dlls/mshtml/htmlbody.c
View file @
aee6a2d8
...
...
@@ -591,6 +591,28 @@ static const NodeImplVtbl HTMLBodyElementImplVtbl = {
HTMLBodyElement_destructor
};
static
const
tid_t
HTMLBodyElement_iface_tids
[]
=
{
IHTMLBodyElement_tid
,
IHTMLBodyElement2_tid
,
IHTMLControlElement_tid
,
IHTMLDOMNode_tid
,
IHTMLDOMNode2_tid
,
IHTMLElement_tid
,
IHTMLElement2_tid
,
IHTMLElement3_tid
,
IHTMLElement4_tid
,
IHTMLTextContainer_tid
,
IHTMLUniqueName_tid
,
0
};
static
dispex_static_data_t
HTMLBodyElement_dispex
=
{
NULL
,
DispHTMLBody_tid
,
NULL
,
HTMLBodyElement_iface_tids
};
HTMLElement
*
HTMLBodyElement_Create
(
nsIDOMHTMLElement
*
nselem
)
{
HTMLBodyElement
*
ret
=
heap_alloc_zero
(
sizeof
(
HTMLBodyElement
));
...
...
@@ -601,6 +623,8 @@ HTMLElement *HTMLBodyElement_Create(nsIDOMHTMLElement *nselem)
HTMLTextContainer_Init
(
&
ret
->
textcont
);
ret
->
lpHTMLBodyElementVtbl
=
&
HTMLBodyElementVtbl
;
init_dispex
(
&
ret
->
textcont
.
element
.
node
.
dispex
,
(
IUnknown
*
)
HTMLBODY
(
ret
),
&
HTMLBodyElement_dispex
);
ret
->
textcont
.
element
.
node
.
vtbl
=
&
HTMLBodyElementImplVtbl
;
ConnectionPoint_Init
(
&
ret
->
cp_propnotif
,
&
ret
->
textcont
.
element
.
cp_container
,
&
IID_IPropertyNotifySink
);
...
...
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