shdocvw: Add basic support for InPlaceDeactivate.

oldstable
Alistair Leslie-Hughes 2009-08-12 15:52:35 +10:00 committed by Alexandre Julliard
parent c368ab5ba7
commit a1ab2df19a
1 changed files with 7 additions and 1 deletions

View File

@ -623,7 +623,13 @@ static HRESULT WINAPI OleInPlaceObject_InPlaceDeactivate(IOleInPlaceObject *ifac
{
WebBrowser *This = INPLACEOBJ_THIS(iface);
FIXME("(%p)\n", This);
return E_NOTIMPL;
if(This->inplace) {
IOleInPlaceSite_Release(This->inplace);
This->inplace = NULL;
}
return S_OK;
}
static HRESULT WINAPI OleInPlaceObject_UIDeactivate(IOleInPlaceObject *iface)