Fixing what (at least used to) crashes #28489. r=vidur@netscape.com

git-svn-id: svn://10.0.0.236/trunk@63359 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%netscape.com
2000-03-18 02:10:28 +00:00
parent 88d070913b
commit 1045f00b64
2 changed files with 14 additions and 10 deletions

View File

@@ -301,11 +301,13 @@ TableRowsCollection::Item(PRUint32 aIndex, nsIDOMNode** aReturn)
NS_IMETHODIMP
TableRowsCollection::NamedItem(const nsString& aName, nsIDOMNode** aReturn)
{
nsresult rv = NS_OK;
if (nsnull!=mParent)
{
}
return rv;
NS_ENSURE_ARG_POINTER(aReturn);
// FIXME: Implement this!
*aReturn = nsnull;
return NS_OK;
}
NS_IMETHODIMP

View File

@@ -301,11 +301,13 @@ TableRowsCollection::Item(PRUint32 aIndex, nsIDOMNode** aReturn)
NS_IMETHODIMP
TableRowsCollection::NamedItem(const nsString& aName, nsIDOMNode** aReturn)
{
nsresult rv = NS_OK;
if (nsnull!=mParent)
{
}
return rv;
NS_ENSURE_ARG_POINTER(aReturn);
// FIXME: Implement this!
*aReturn = nsnull;
return NS_OK;
}
NS_IMETHODIMP