mshtml: Added semi-stub implementation of IOmNavigator::get_cookieEnabled.

This commit is contained in:
Jacek Caban 2012-04-05 13:58:29 +02:00 committed by Alexandre Julliard
parent 383564ab2f
commit ebeff88e6e
1 changed files with 5 additions and 2 deletions

View File

@ -578,8 +578,11 @@ static HRESULT WINAPI OmNavigator_get_plugins(IOmNavigator *iface, IHTMLPluginsC
static HRESULT WINAPI OmNavigator_get_cookieEnabled(IOmNavigator *iface, VARIANT_BOOL *p)
{
OmNavigator *This = impl_from_IOmNavigator(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
WARN("(%p)->(%p) semi-stub\n", This, p);
*p = VARIANT_TRUE;
return S_OK;
}
static HRESULT WINAPI OmNavigator_get_opsProfile(IOmNavigator *iface, IHTMLOpsProfile **p)