Commit 91c3e75b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mshtml: Fix spelling of an HTMLEmbedElement method implementation name.

parent 1ba9cfb5
...@@ -110,7 +110,7 @@ static HRESULT WINAPI HTMLEmbedElement_get_hidden(IHTMLEmbedElement *iface, BSTR ...@@ -110,7 +110,7 @@ static HRESULT WINAPI HTMLEmbedElement_get_hidden(IHTMLEmbedElement *iface, BSTR
return E_NOTIMPL; 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); HTMLEmbedElement *This = impl_from_IHTMLEmbedElement(iface);
FIXME("(%p)->(%p)\n", This, p); FIXME("(%p)->(%p)\n", This, p);
...@@ -204,7 +204,7 @@ static const IHTMLEmbedElementVtbl HTMLEmbedElementVtbl = { ...@@ -204,7 +204,7 @@ static const IHTMLEmbedElementVtbl HTMLEmbedElementVtbl = {
HTMLEmbedElement_Invoke, HTMLEmbedElement_Invoke,
HTMLEmbedElement_put_hidden, HTMLEmbedElement_put_hidden,
HTMLEmbedElement_get_hidden, HTMLEmbedElement_get_hidden,
HTMLEmbedElement_get_palete, HTMLEmbedElement_get_palette,
HTMLEmbedElement_get_pluginspage, HTMLEmbedElement_get_pluginspage,
HTMLEmbedElement_put_src, HTMLEmbedElement_put_src,
HTMLEmbedElement_get_src, HTMLEmbedElement_get_src,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment