mshtml: Fix spelling of an HTMLEmbedElement method implementation name.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2016-04-13 11:30:10 +02:00 committed by Alexandre Julliard
parent 1ba9cfb5c3
commit 91c3e75bb5
1 changed files with 2 additions and 2 deletions

View File

@ -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,