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
7ceaf5b3
Commit
7ceaf5b3
authored
Jun 22, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fix a typo.
parent
e82be4ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
conpoint.c
dlls/mshtml/conpoint.c
+2
-1
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+1
-0
No files found.
dlls/mshtml/conpoint.c
View file @
7ceaf5b3
...
...
@@ -201,7 +201,7 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
*
ppCP
=
CONPOINT
(
This
->
cp_htmldocevents2
);
}
else
if
(
IsEqualGUID
(
&
IID_IPropertyNotifySink
,
riid
))
{
TRACE
(
"(%p)->(IID_IPropertyNotifySink %p)
\n
"
,
This
,
ppCP
);
*
ppCP
=
CONPOINT
(
This
->
cp_
htmldocevents
);
*
ppCP
=
CONPOINT
(
This
->
cp_
propnotif
);
}
if
(
*
ppCP
)
{
...
...
@@ -227,6 +227,7 @@ void HTMLDocument_ConnectionPoints_Init(HTMLDocument *This)
{
This
->
lpConnectionPointContainerVtbl
=
&
ConnectionPointContainerVtbl
;
ConnectionPoint_Create
(
This
,
&
IID_IPropertyNotifySink
,
&
This
->
cp_propnotif
);
ConnectionPoint_Create
(
This
,
&
DIID_HTMLDocumentEvents
,
&
This
->
cp_htmldocevents
);
ConnectionPoint_Create
(
This
,
&
DIID_HTMLDocumentEvents2
,
&
This
->
cp_htmldocevents2
);
}
dlls/mshtml/tests/htmldoc.c
View file @
7ceaf5b3
...
...
@@ -1295,6 +1295,7 @@ static void test_ConnectionPointContainer(IUnknown *unk)
if
(
FAILED
(
hres
))
return
;
test_ConnectionPoint
(
container
,
&
IID_IPropertyNotifySink
);
test_ConnectionPoint
(
container
,
&
DIID_HTMLDocumentEvents
);
test_ConnectionPoint
(
container
,
&
DIID_HTMLDocumentEvents2
);
...
...
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