Contribution from Ben Bucksch <mozilla@bucksch.org> to eliminate URL: in url strings. r=akkana

This commit is contained in:
akkana%netscape.com 1999-12-22 22:42:46 +00:00
Родитель 949d52cd68
Коммит 2eba1857b8
2 изменённых файлов: 6 добавлений и 6 удалений

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

@ -600,13 +600,13 @@ nsHTMLToTXTSinkStream::OpenContainer(const nsIParserNode& aNode)
{
temp += " (";
temp += desc;
temp += " <URL:";
temp += " <";
temp += url;
temp += ">) ";
}
else
{
temp += " <URL:";
temp += " <";
temp += url;
temp += "> ";
}
@ -714,7 +714,7 @@ nsHTMLToTXTSinkStream::CloseContainer(const nsIParserNode& aNode)
{ // these brackets must stay here
if (!mURL.IsEmpty())
{
nsAutoString temp(" <URL:");
nsAutoString temp(" <");
temp += mURL;
temp += ">";
Write(temp);

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

@ -600,13 +600,13 @@ nsHTMLToTXTSinkStream::OpenContainer(const nsIParserNode& aNode)
{
temp += " (";
temp += desc;
temp += " <URL:";
temp += " <";
temp += url;
temp += ">) ";
}
else
{
temp += " <URL:";
temp += " <";
temp += url;
temp += "> ";
}
@ -714,7 +714,7 @@ nsHTMLToTXTSinkStream::CloseContainer(const nsIParserNode& aNode)
{ // these brackets must stay here
if (!mURL.IsEmpty())
{
nsAutoString temp(" <URL:");
nsAutoString temp(" <");
temp += mURL;
temp += ">";
Write(temp);