Make GetType() return int instead of nsresult (bug 167762), r=peterl@netscape.com, sr=kin@netscape.com

This commit is contained in:
jkeiser@netscape.com
2002-12-18 23:38:09 +00:00
parent f2dec142bf
commit 4abefda8a3
51 changed files with 136 additions and 323 deletions

View File

@@ -206,10 +206,10 @@ NS_IMETHODIMP nsHTMLButtonControlFrame::GetAccessible(nsIAccessible** aAccessibl
#endif
NS_IMETHODIMP
nsHTMLButtonControlFrame::GetType(PRInt32* aType) const
NS_IMETHODIMP_(PRInt32)
nsHTMLButtonControlFrame::GetType() const
{
return nsFormControlHelper::GetType(mContent, aType);
return nsFormControlHelper::GetType(mContent);
}
NS_IMETHODIMP