mshtml: Fix return value for HTMLBodyElement_get_text.

This commit is contained in:
Gerald Pfeifer 2010-05-01 16:19:05 +02:00 committed by Alexandre Julliard
parent a30b94651d
commit 6976400f7b
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ static HRESULT WINAPI HTMLBodyElement_get_text(IHTMLBodyElement *iface, VARIANT
nsAString_Finish(&text);
return S_OK;
return hres;
}
static HRESULT WINAPI HTMLBodyElement_put_link(IHTMLBodyElement *iface, VARIANT v)