shdocvw: Return S_OK in IPersistStreamInit::InitNew.

This commit is contained in:
Jacek Caban 2006-06-20 19:04:07 +02:00 committed by Alexandre Julliard
parent a2f715e536
commit ac4abb7536
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface)
{
WebBrowser *This = PERSTRINIT_THIS(iface);
FIXME("(%p)\n", This);
return E_NOTIMPL;
return S_OK;
}
#undef PERSTRINIT_THIS