Made anyType be the base of array. This is not part of the default build.

This commit is contained in:
vidur%netscape.com 2002-02-15 01:54:49 +00:00
Родитель 045149cbac
Коммит 4ccb3ba47e
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -100,7 +100,7 @@ NS_IMETHODIMP
nsSOAPArray::GetBaseType(nsISchemaType * *aBaseType)
{
NS_ENSURE_ARG_POINTER(aBaseType);
*aBaseType = nsnull;
NS_ADDREF(*aBaseType = mAnyType);
return NS_OK;
}

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

@ -100,7 +100,7 @@ NS_IMETHODIMP
nsSOAPArray::GetBaseType(nsISchemaType * *aBaseType)
{
NS_ENSURE_ARG_POINTER(aBaseType);
*aBaseType = nsnull;
NS_ADDREF(*aBaseType = mAnyType);
return NS_OK;
}