Remove the pointless nsIContent arg of nsIFrame::AttributeChanged. Bug 281390,

patch by Vidar Braut Haarr <vhaarr+bmo@gmail.com>, r+sr=bzbarsky


git-svn-id: svn://10.0.0.236/trunk@179800 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2005-09-07 16:49:21 +00:00
parent f50c4ed8b7
commit c3d2c5e7a2
76 changed files with 127 additions and 214 deletions

View File

@@ -306,8 +306,7 @@ nsGfxButtonControlFrame::GetDefaultLabel(nsXPIDLString& aString)
}
NS_IMETHODIMP
nsGfxButtonControlFrame::AttributeChanged(nsIContent* aChild,
PRInt32 aNameSpaceID,
nsGfxButtonControlFrame::AttributeChanged(PRInt32 aNameSpaceID,
nsIAtom* aAttribute,
PRInt32 aModType)
{
@@ -327,7 +326,7 @@ nsGfxButtonControlFrame::AttributeChanged(nsIContent* aChild,
// defer to HTMLButtonControlFrame
} else {
rv = nsHTMLButtonControlFrame::AttributeChanged(aChild, aNameSpaceID, aAttribute, aModType);
rv = nsHTMLButtonControlFrame::AttributeChanged(aNameSpaceID, aAttribute, aModType);
}
return rv;
}