shdocvw: Return S_OK in PersistStorage_InitNew.

This commit is contained in:
James Hawkins 2006-10-06 18:11:46 -07:00 committed by Alexandre Julliard
parent 7b89ff88e8
commit e55ed113fa
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ static HRESULT WINAPI PersistStorage_InitNew(IPersistStorage *iface, LPSTORAGE p
{
WebBrowser *This = PERSTORAGE_THIS(iface);
FIXME("(%p)->(%p)\n", This, pStg);
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI PersistStorage_Load(IPersistStorage *iface, LPSTORAGE pStg)