From 0d5899548fa8a235be8a769609ce2fc4d5503c39 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Tue, 11 Aug 2009 19:15:30 +0200 Subject: [PATCH] mshtml: Use correct macro in HTMLInputTextElement::get_value. --- dlls/mshtml/htmlinput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/htmlinput.c b/dlls/mshtml/htmlinput.c index eaffae5b53..df7cb5fb30 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)