Jacek Caban : mshtml: Renamed nsIDOMHTMLSelectElement:: Remove to select_Remove to avoid conflict with nsIDOMElement.
Module: wine Branch: master Commit: 8b81af32ae0aedd72e9809050e759f579e727e24 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8b81af32ae0aedd72e9809050e... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Mon Apr 28 12:17:59 2014 +0200 mshtml: Renamed nsIDOMHTMLSelectElement::Remove to select_Remove to avoid conflict with nsIDOMElement. Spotted by Zhenbo Li. --- dlls/mshtml/nsiface.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/nsiface.idl b/dlls/mshtml/nsiface.idl index c0959f5..9182c19 100644 --- a/dlls/mshtml/nsiface.idl +++ b/dlls/mshtml/nsiface.idl @@ -1791,7 +1791,7 @@ interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement nsresult Item(uint32_t index, nsIDOMNode **_retval); nsresult NamedItem(const nsAString *name, nsIDOMNode **_retval); nsresult Add(nsIDOMHTMLElement *element, nsIVariant *before); - nsresult Remove(int32_t index); + nsresult select_Remove(int32_t index); nsresult GetSelectedIndex(int32_t *aSelectedIndex); nsresult SetSelectedIndex(int32_t aSelectedIndex); nsresult GetValue(nsAString *aValue);
participants (1)
-
Alexandre Julliard