Commit 0d589954 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Use correct macro in HTMLInputTextElement::get_value.

parent 3768ae73
...@@ -839,7 +839,7 @@ static HRESULT WINAPI HTMLInputTextElement_get_value(IHTMLInputTextElement *ifac ...@@ -839,7 +839,7 @@ static HRESULT WINAPI HTMLInputTextElement_get_value(IHTMLInputTextElement *ifac
TRACE("(%p)->(%p)\n", This, p); 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) static HRESULT WINAPI HTMLInputTextElement_put_name(IHTMLInputTextElement *iface, BSTR v)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment