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

@@ -709,10 +709,10 @@ nsFormControlFrame::GetSizeFromContent(PRInt32* aSize) const
return result;
}
NS_IMETHODIMP
nsFormControlFrame::GetType(PRInt32* aType) const
NS_IMETHODIMP_(PRInt32)
nsFormControlFrame::GetType() const
{
return nsFormControlHelper::GetType(mContent, aType);
return nsFormControlHelper::GetType(mContent);
}
NS_IMETHODIMP