Small output format change.

git-svn-id: svn://10.0.0.236/trunk@21890 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cata%netscape.com
1999-02-25 14:46:46 +00:00
parent d493860db8
commit f937e91bfd

View File

@@ -894,13 +894,13 @@ nsresult testPlatformCharset()
nsString value;
res = cinfo->GetCharset(kPlatformCharsetSel_PlainTextInClipboard , value);
printf("Clipboard plain text encoding = %s\n\n",value.ToNewCString());
printf("Clipboard plain text encoding = %s\n",value.ToNewCString());
res = cinfo->GetCharset(kPlatformCharsetSel_FileName , value);
printf("File Name encoding = %s\n\n",value.ToNewCString());
printf("File Name encoding = %s\n",value.ToNewCString());
res = cinfo->GetCharset(kPlatformCharsetSel_Menu , value);
printf("Menu encoding = %s\n\n",value.ToNewCString());
printf("Menu encoding = %s\n",value.ToNewCString());
cinfo->Release();
return res;