Commit 0aca61c5 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

mshtml: Added OleObject_Unadvise implementation.

parent bbfa604d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment