[Libreoffice-commits] core.git: unoxml/qa
Stephan Bergmann
sbergman at redhat.com
Fri Sep 20 14:49:28 PDT 2013
unoxml/qa/complex/unoxml/DOMTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 0b8abbf1924a5c2262df50cc95c8e9200890f6f6
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Sep 20 23:46:11 2013 +0200
The original bytes were probably meant as UTF-8, not UTF-16
...not that it matters much /what/ characters are used in the sample text, of
course. And no-argument java.lang.String.getBytes() appears to indeed use the
legacy Mac OS Roman encoding on Mac OS X...
Change-Id: I51cd8c16f14e2df8b75d9961150518c8a03d53ca
diff --git a/unoxml/qa/complex/unoxml/DOMTest.java b/unoxml/qa/complex/unoxml/DOMTest.java
index 8cd93da..ed4374c 100644
--- a/unoxml/qa/complex/unoxml/DOMTest.java
+++ b/unoxml/qa/complex/unoxml/DOMTest.java
@@ -2706,7 +2706,7 @@ public class DOMTest
"<xlink:test/>" +
"<office:automatic-styles teststyle=\"test\"/>" +
"<moretest/>" +
- "some text \uC3B6\uC3A4\uC3BC" +
+ "some text \u00F6\u00E4\u00FC" +
"</office:document-content>";
XDocumentBuilder xBuilder =
More information about the Libreoffice-commits
mailing list