Changed GetTag() to return NULL for the tag name

This commit is contained in:
troy%netscape.com 1999-08-20 03:17:11 +00:00
Родитель 47230eef59
Коммит 90496286f5
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -100,8 +100,8 @@ public:
}
NS_IMETHOD GetTag(nsIAtom*& aResult) const {
//*aResult = nsnull;
return NS_ERROR_FAILURE;
aResult = nsnull;
return NS_OK;
}

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

@ -100,8 +100,8 @@ public:
}
NS_IMETHOD GetTag(nsIAtom*& aResult) const {
//*aResult = nsnull;
return NS_ERROR_FAILURE;
aResult = nsnull;
return NS_OK;
}