Module: wine Branch: master Commit: 0d5899548fa8a235be8a769609ce2fc4d5503c39 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0d5899548fa8a235be8a769609... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Tue Aug 11 19:15:30 2009 +0200 mshtml: Use correct macro in HTMLInputTextElement::get_value. --- dlls/mshtml/htmlinput.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mshtml/htmlinput.c b/dlls/mshtml/htmlinput.c index eaffae5..df7cb5f 100644 --- a/dlls/mshtml/htmlinput.c +++ b/dlls/mshtml/htmlinput.c @@ -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)