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:
parent
1ba9cfb5c3
commit
91c3e75bb5
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue