mshtml: Return S_OK from IHTMLDocument2::get_referrer.

This commit is contained in:
Jacek Caban 2010-03-13 16:45:30 +01:00 committed by Alexandre Julliard
parent 9389184d1f
commit 400d8897f6
1 changed files with 5 additions and 2 deletions

View File

@ -554,9 +554,12 @@ static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT
static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
{
HTMLDocument *This = HTMLDOC_THIS(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
}
*p = NULL;
return S_OK;
}
static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
{