Pass through notify argument with UnsetAttribute method

This commit is contained in:
kipp%netscape.com 1998-09-24 21:34:56 +00:00
Родитель eb17ac05c0
Коммит 99612d095e
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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 { \