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
cd68aacb
Commit
cd68aacb
authored
Dec 04, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 04, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Move HTMLTextContainerEvents connection point to HTMLTextContainer object.
parent
2bcd1f0e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
htmlbody.c
dlls/mshtml/htmlbody.c
+0
-3
htmltextcont.c
dlls/mshtml/htmltextcont.c
+2
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-0
No files found.
dlls/mshtml/htmlbody.c
View file @
cd68aacb
...
...
@@ -41,7 +41,6 @@ typedef struct {
const
IHTMLBodyElementVtbl
*
lpHTMLBodyElementVtbl
;
ConnectionPoint
cp_propnotif
;
ConnectionPoint
cp_txtcontevents
;
nsIDOMHTMLBodyElement
*
nsbody
;
}
HTMLBodyElement
;
...
...
@@ -502,8 +501,6 @@ HTMLElement *HTMLBodyElement_Create(nsIDOMHTMLElement *nselem)
ret
->
textcont
.
element
.
node
.
vtbl
=
&
HTMLBodyElementImplVtbl
;
ConnectionPoint_Init
(
&
ret
->
cp_propnotif
,
&
ret
->
textcont
.
element
.
cp_container
,
&
IID_IPropertyNotifySink
);
ConnectionPoint_Init
(
&
ret
->
cp_txtcontevents
,
&
ret
->
textcont
.
element
.
cp_container
,
&
DIID_HTMLTextContainerEvents
);
nsres
=
nsIDOMHTMLElement_QueryInterface
(
nselem
,
&
IID_nsIDOMHTMLBodyElement
,
(
void
**
)
&
ret
->
nsbody
);
...
...
dlls/mshtml/htmltextcont.c
View file @
cd68aacb
...
...
@@ -216,4 +216,6 @@ void HTMLTextContainer_Init(HTMLTextContainer *This)
HTMLElement_Init
(
&
This
->
element
);
This
->
lpHTMLTextContainerVtbl
=
&
HTMLTextContainerVtbl
;
ConnectionPoint_Init
(
&
This
->
cp
,
&
This
->
element
.
cp_container
,
&
DIID_HTMLTextContainerEvents
);
}
dlls/mshtml/mshtml_private.h
View file @
cd68aacb
...
...
@@ -297,6 +297,8 @@ typedef struct {
HTMLElement
element
;
const
IHTMLTextContainerVtbl
*
lpHTMLTextContainerVtbl
;
ConnectionPoint
cp
;
}
HTMLTextContainer
;
#define HTMLWINDOW2(x) ((IHTMLWindow2*) &(x)->lpHTMLWindow2Vtbl)
...
...
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