ole32: Partial implementation of IOleObject_Update().

This commit is contained in:
Huw Davies 2008-10-20 14:45:56 +01:00 committed by Alexandre Julliard
parent f04804f44c
commit f2cf617f00
1 changed files with 9 additions and 2 deletions

View File

@ -621,8 +621,15 @@ static HRESULT WINAPI DefaultHandler_EnumVerbs(
static HRESULT WINAPI DefaultHandler_Update(
IOleObject* iface)
{
FIXME(": Stub\n");
return E_NOTIMPL;
DefaultHandler *This = impl_from_IOleObject(iface);
TRACE("(%p)\n", iface);
if (!object_is_running(This))
{
FIXME("Should run object\n");
return E_NOTIMPL;
}
return IOleObject_Update(This->pOleDelegate);
}
/************************************************************************