Attempt to fix HPUX bustage, r=scc

This commit is contained in:
disttsc%bart.nl 2000-12-13 04:08:45 +00:00
Родитель fecc01ffe5
Коммит 7449888c4f
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -365,7 +365,7 @@ nsLoggingSink::OpenNode(const char* aKind, const nsIParserNode& aNode)
}
else {
const nsAReadableString& text = aNode.GetText();
(*mOutput) << "\"" << NS_ConvertUCS2toUTF8(text) << " \"";
(*mOutput) << "\"" << NS_ConvertUCS2toUTF8(text).get() << " \"";
}
if (WillWriteAttributes(aNode)) {
@ -398,7 +398,7 @@ nsLoggingSink::WriteAttributes(const nsIParserNode& aNode)
const nsAReadableString& k = aNode.GetKeyAt(i);
const nsString& v = aNode.GetValueAt(i);
(*mOutput) << " <attr key=\"" << NS_ConvertUCS2toUTF8(k) << "\" value=\"";
(*mOutput) << " <attr key=\"" << NS_ConvertUCS2toUTF8(k).get() << "\" value=\"";
tmp.Truncate();
tmp.Append(v);

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

@ -365,7 +365,7 @@ nsLoggingSink::OpenNode(const char* aKind, const nsIParserNode& aNode)
}
else {
const nsAReadableString& text = aNode.GetText();
(*mOutput) << "\"" << NS_ConvertUCS2toUTF8(text) << " \"";
(*mOutput) << "\"" << NS_ConvertUCS2toUTF8(text).get() << " \"";
}
if (WillWriteAttributes(aNode)) {
@ -398,7 +398,7 @@ nsLoggingSink::WriteAttributes(const nsIParserNode& aNode)
const nsAReadableString& k = aNode.GetKeyAt(i);
const nsString& v = aNode.GetValueAt(i);
(*mOutput) << " <attr key=\"" << NS_ConvertUCS2toUTF8(k) << "\" value=\"";
(*mOutput) << " <attr key=\"" << NS_ConvertUCS2toUTF8(k).get() << "\" value=\"";
tmp.Truncate();
tmp.Append(v);