This commit is contained in:
kostello 1998-07-14 23:30:44 +00:00
Родитель c0b7b411e2
Коммит 213a328a93
2 изменённых файлов: 8 добавлений и 6 удалений

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

@ -1203,7 +1203,6 @@ void nsDocument::ToXIF(nsString & aBuffer, PRBool aUseSelection)
{
nsXIFConverter converter(aBuffer);
nsIDOMNode *root = nsnull;
// call the function
converter.AddStartTag("section");
@ -1212,8 +1211,10 @@ void nsDocument::ToXIF(nsString & aBuffer, PRBool aUseSelection)
converter.AddEndTag("section_head");
converter.AddStartTag("section_body");
if (NS_OK == GetFirstChild(&root))
{
nsIDOMElement* root = nsnull;
if (NS_OK == GetDocumentElement(&root))
{
ToXIF(converter,root);
NS_RELEASE(root);
}

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

@ -1203,7 +1203,6 @@ void nsDocument::ToXIF(nsString & aBuffer, PRBool aUseSelection)
{
nsXIFConverter converter(aBuffer);
nsIDOMNode *root = nsnull;
// call the function
converter.AddStartTag("section");
@ -1212,8 +1211,10 @@ void nsDocument::ToXIF(nsString & aBuffer, PRBool aUseSelection)
converter.AddEndTag("section_head");
converter.AddStartTag("section_body");
if (NS_OK == GetFirstChild(&root))
{
nsIDOMElement* root = nsnull;
if (NS_OK == GetDocumentElement(&root))
{
ToXIF(converter,root);
NS_RELEASE(root);
}