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
21836d21
Commit
21836d21
authored
Jun 29, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Add IID_IPropertyNotifySink and DIID_HTMLTextContainerEvents connection…
mshtml: Add IID_IPropertyNotifySink and DIID_HTMLTextContainerEvents connection points to HTMLBodyElement.
parent
982dce48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
htmlbody.c
dlls/mshtml/htmlbody.c
+7
-1
No files found.
dlls/mshtml/htmlbody.c
View file @
21836d21
...
...
@@ -41,6 +41,8 @@ typedef struct {
HTMLTextContainer
text_container
;
ConnectionPointContainer
cp_container
;
ConnectionPoint
cp_propnotif
;
ConnectionPoint
cp_txtcontevents
;
HTMLElement
*
element
;
nsIDOMHTMLBodyElement
*
nsbody
;
...
...
@@ -493,7 +495,11 @@ void HTMLBodyElement_Create(HTMLElement *element)
HTMLTextContainer_Init
(
&
ret
->
text_container
,
element
);
ConnectionPointContainer_Init
(
&
ret
->
cp_container
,
NULL
,
(
IUnknown
*
)
HTMLBODY
(
ret
));
ConnectionPoint_Init
(
&
ret
->
cp_propnotif
,
CONPTCONT
(
&
ret
->
cp_container
),
&
IID_IPropertyNotifySink
,
NULL
);
ConnectionPoint_Init
(
&
ret
->
cp_txtcontevents
,
CONPTCONT
(
&
ret
->
cp_container
),
&
DIID_HTMLTextContainerEvents
,
&
ret
->
cp_propnotif
);
ConnectionPointContainer_Init
(
&
ret
->
cp_container
,
&
ret
->
cp_propnotif
,
(
IUnknown
*
)
HTMLBODY
(
ret
));
nsres
=
nsIDOMHTMLElement_QueryInterface
(
element
->
nselem
,
&
IID_nsIDOMHTMLBodyElement
,
(
void
**
)
&
ret
->
nsbody
);
...
...
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