bug 183156 remove *UCS2* functions, replacing them with *UTF16* ones

r+sr=darin
This commit is contained in:
cbiesinger@web.de
2006-02-03 14:18:39 +00:00
parent 6dd7c6d124
commit aae44b57d9
354 changed files with 1134 additions and 1147 deletions

View File

@@ -4275,7 +4275,7 @@ nsGenericElement::List(FILE* out, PRInt32 aIndent) const
nsAutoString buf;
mNodeInfo->GetQualifiedName(buf);
fputs(NS_LossyConvertUCS2toASCII(buf).get(), out);
fputs(NS_LossyConvertUTF16toASCII(buf).get(), out);
fprintf(out, "@%p", this);
@@ -4293,7 +4293,7 @@ nsGenericElement::List(FILE* out, PRInt32 aIndent) const
buffer.Append(value);
fputs(" ", out);
fputs(NS_LossyConvertUCS2toASCII(buffer).get(), out);
fputs(NS_LossyConvertUTF16toASCII(buffer).get(), out);
}
fprintf(out, " refcount=%d<", mRefCnt.get());