shdocvw: Return S_OK in OnInPlaceDeactivate.

This commit is contained in:
Jacek Caban 2006-05-18 22:43:01 +02:00 committed by Alexandre Julliard
parent df3902e6c1
commit ae2c061e8e
1 changed files with 5 additions and 2 deletions

View File

@ -246,8 +246,11 @@ static HRESULT WINAPI InPlaceSite_OnUIDeactivate(IOleInPlaceSite *iface, BOOL fU
static HRESULT WINAPI InPlaceSite_OnInPlaceDeactivate(IOleInPlaceSite *iface)
{
DocHost *This = INPLACESITE_THIS(iface);
FIXME("(%p)\n", This);
return E_NOTIMPL;
TRACE("(%p)\n", This);
/* Nothing to do here */
return S_OK;
}
static HRESULT WINAPI InPlaceSite_DiscardUndoState(IOleInPlaceSite *iface)