In nsXIFConverter::BeginContainer(const nsString& aTag)
newline was getting appended by default at the end of a tag.
Setting the default value to PR_FALSE to avoid newline insertion
at the end of a tag.
R=akkana
This commit is contained in:
harishd%netscape.com 1999-10-07 00:28:58 +00:00
Родитель e31117c23f
Коммит 23cdb1131e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -377,7 +377,7 @@ void nsXIFConverter::BeginContainer(const nsString& aTag)
BeginStartTag(container);
AddAttribute(mIsa,aTag);
FinishStartTag(container,PR_FALSE);
FinishStartTag(container,PR_FALSE,PR_FALSE);
}
void nsXIFConverter::EndContainer(const nsString& aTag)