mshtml: Added OleObject_Unadvise implementation.
This commit is contained in:
parent
bbfa604dc0
commit
0aca61c5c3
|
@ -402,8 +402,12 @@ static HRESULT WINAPI OleObject_Advise(IOleObject *iface, IAdviseSink *pAdvSink,
|
|||
static HRESULT WINAPI OleObject_Unadvise(IOleObject *iface, DWORD dwConnection)
|
||||
{
|
||||
HTMLDocument *This = OLEOBJ_THIS(iface);
|
||||
FIXME("(%p)->(%d)\n", This, dwConnection);
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p)->(%d)\n", This, dwConnection);
|
||||
|
||||
if(!This->advise_holder)
|
||||
return OLE_E_NOCONNECTION;
|
||||
|
||||
return IOleAdviseHolder_Unadvise(This->advise_holder, dwConnection);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI OleObject_EnumAdvise(IOleObject *iface, IEnumSTATDATA **ppenumAdvise)
|
||||
|
|
Loading…
Reference in New Issue