mshtml: Added IPropertyNotifySink connection point.

This commit is contained in:
Jacek Caban 2006-06-20 18:55:13 +02:00 committed by Alexandre Julliard
parent 6f75b5e4ad
commit f052845013
2 changed files with 4 additions and 0 deletions

View File

@ -199,6 +199,9 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
}else if(IsEqualGUID(&DIID_HTMLDocumentEvents2, riid)) {
TRACE("(%p)->(DIID_HTMLDocumentEvents2 %p)\n", This, ppCP);
*ppCP = CONPOINT(This->cp_htmldocevents2);
}else if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
TRACE("(%p)->(IID_IPropertyNotifySink %p)\n", This, ppCP);
*ppCP = CONPOINT(This->cp_htmldocevents);
}
if(*ppCP) {

View File

@ -86,6 +86,7 @@ typedef struct {
ConnectionPoint *cp_htmldocevents;
ConnectionPoint *cp_htmldocevents2;
ConnectionPoint *cp_propnotif;
HTMLDOMNode *nodes;
} HTMLDocument;