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
2755c92f
Commit
2755c92f
authored
Sep 21, 2007
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Sep 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fix another typo and add trace.
parent
201e03b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
htmlbody.c
dlls/mshtml/htmlbody.c
+5
-5
No files found.
dlls/mshtml/htmlbody.c
View file @
2755c92f
...
...
@@ -40,8 +40,6 @@ typedef struct {
const
IHTMLBodyElementVtbl
*
lpHTMLBodyElementVtbl
;
HTMLTextContainer
text_container
;
ConnectionPointContainer
cp_container
;
ConnectionPoint
cp_propnotif
;
ConnectionPoint
cp_txtcontevents
;
...
...
@@ -71,8 +69,8 @@ static HRESULT WINAPI HTMLBodyElement_QueryInterface(IHTMLBodyElement *iface,
TRACE
(
"(%p)->(IID_IHTMLBodyElement %p)
\n
"
,
This
,
ppv
);
*
ppv
=
HTMLBODY
(
This
);
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLTextContainer
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLTextContainer %p)
\n
"
,
This
,
ppv
);
*
ppv
=
HTMLTEXTCONT
(
&
This
->
text
_container
);
TRACE
(
"(%p)->(IID_IHTMLTextContainer %p)
\n
"
,
&
This
->
textcont
,
ppv
);
*
ppv
=
HTMLTEXTCONT
(
&
This
->
text
cont
);
}
else
if
(
IsEqualGUID
(
&
IID_IConnectionPointContainer
,
riid
))
{
TRACE
(
"(%p)->(IID_IConnectionPointContainer %p)
\n
"
,
This
,
ppv
);
*
ppv
=
CONPTCONT
(
&
This
->
cp_container
);
...
...
@@ -487,9 +485,11 @@ HTMLElement *HTMLBodyElement_Create(nsIDOMHTMLElement *nselem)
HTMLBodyElement
*
ret
=
mshtml_alloc
(
sizeof
(
HTMLBodyElement
));
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
ret
,
nselem
);
ret
->
lpHTMLBodyElementVtbl
=
&
HTMLBodyElementVtbl
;
HTMLTextContainer_Init
(
&
ret
->
text
_container
);
HTMLTextContainer_Init
(
&
ret
->
text
cont
);
ConnectionPoint_Init
(
&
ret
->
cp_propnotif
,
CONPTCONT
(
&
ret
->
cp_container
),
&
IID_IPropertyNotifySink
,
NULL
);
...
...
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