Francois Gouget : mshtml: Fix spelling of an HTMLEmbedElement method implementation name.
Module: wine Branch: master Commit: 91c3e75bb58de0e5c5e06393809681abc35e162b URL: http://source.winehq.org/git/wine.git/?a=commit;h=91c3e75bb58de0e5c5e0639380... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Apr 13 11:30:10 2016 +0200 mshtml: Fix spelling of an HTMLEmbedElement method implementation name. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmlembed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlembed.c b/dlls/mshtml/htmlembed.c index 506b4b5..5b3c1c1 100644 --- a/dlls/mshtml/htmlembed.c +++ b/dlls/mshtml/htmlembed.c @@ -110,7 +110,7 @@ static HRESULT WINAPI HTMLEmbedElement_get_hidden(IHTMLEmbedElement *iface, BSTR return E_NOTIMPL; } -static HRESULT WINAPI HTMLEmbedElement_get_palete(IHTMLEmbedElement *iface, BSTR *p) +static HRESULT WINAPI HTMLEmbedElement_get_palette(IHTMLEmbedElement *iface, BSTR *p) { HTMLEmbedElement *This = impl_from_IHTMLEmbedElement(iface); FIXME("(%p)->(%p)\n", This, p); @@ -204,7 +204,7 @@ static const IHTMLEmbedElementVtbl HTMLEmbedElementVtbl = { HTMLEmbedElement_Invoke, HTMLEmbedElement_put_hidden, HTMLEmbedElement_get_hidden, - HTMLEmbedElement_get_palete, + HTMLEmbedElement_get_palette, HTMLEmbedElement_get_pluginspage, HTMLEmbedElement_put_src, HTMLEmbedElement_get_src,
participants (1)
-
Alexandre Julliard