From 99612d095e9fcf7a7323a9336c7656fcad639b1d Mon Sep 17 00:00:00 2001 From: "kipp%netscape.com" Date: Thu, 24 Sep 1998 21:34:56 +0000 Subject: [PATCH] Pass through notify argument with UnsetAttribute method --- layout/html/content/src/nsGenericDOMDataNode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/layout/html/content/src/nsGenericDOMDataNode.h b/layout/html/content/src/nsGenericDOMDataNode.h index ede805cea43..f1d20ab30d3 100644 --- a/layout/html/content/src/nsGenericDOMDataNode.h +++ b/layout/html/content/src/nsGenericDOMDataNode.h @@ -154,7 +154,7 @@ struct nsGenericDOMDataNode { PRBool aNotify) { return NS_OK; } - nsresult UnsetAttribute(nsIAtom* aAttribute) { + nsresult UnsetAttribute(nsIAtom* aAttribute, PRBool aNotify) { return NS_OK; } nsresult GetAttribute(nsIAtom *aAttribute, nsString &aResult) const { @@ -460,8 +460,8 @@ struct nsGenericDOMDataNode { const nsHTMLValue& aValue, PRBool aNotify) { \ return _g.SetAttribute(aAttribute, aValue, aNotify); \ } \ - NS_IMETHOD UnsetAttribute(nsIAtom* aAttribute) { \ - return _g.UnsetAttribute(aAttribute); \ + NS_IMETHOD UnsetAttribute(nsIAtom* aAttribute, PRBool aNotify) { \ + return _g.UnsetAttribute(aAttribute, aNotify); \ } \ NS_IMETHOD GetAttribute(nsIAtom *aAttribute, \ nsString &aResult) const { \