mshtml: Use correct macro in HTMLInputTextElement::get_value.

This commit is contained in:
Jacek Caban 2009-08-11 19:15:30 +02:00 committed by Alexandre Julliard
parent 3768ae7336
commit 0d5899548f

View file

@ -839,7 +839,7 @@ static HRESULT WINAPI HTMLInputTextElement_get_value(IHTMLInputTextElement *ifac
TRACE("(%p)->(%p)\n", This, p);
return IHTMLInputTextElement_get_value(HTMLINPUT(This), p);
return IHTMLInputElement_get_value(HTMLINPUT(This), p);
}
static HRESULT WINAPI HTMLInputTextElement_put_name(IHTMLInputTextElement *iface, BSTR v)