summaryrefslogtreecommitdiff
path: root/sw/qa/extras
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-09-21 13:07:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-09-21 13:07:59 +0200
commitd3040663f0a1f4a9c88cb129e4c5c06416614218 (patch)
tree963f64752e62664e2ab09e452771c54171ab4780 /sw/qa/extras
parentd99b65c864cc3358238e4eac651f12a34d05e2d9 (diff)
Clean up construction of one non-ASCII-literal OUString
...in preparation of a change coming there soon Change-Id: I8861dbd47d0e514cd1c5dc0bb978724ae687f01c
Diffstat (limited to 'sw/qa/extras')
-rw-r--r--sw/qa/extras/rtfexport/rtfexport2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/rtfexport/rtfexport2.cxx b/sw/qa/extras/rtfexport/rtfexport2.cxx
index e921c6e801a2..7b5d82da3f8e 100644
--- a/sw/qa/extras/rtfexport/rtfexport2.cxx
+++ b/sw/qa/extras/rtfexport/rtfexport2.cxx
@@ -1507,7 +1507,7 @@ DECLARE_RTFEXPORT_TEST(testFdo85889mac, "fdo85889-mac.rtf")
DECLARE_RTFEXPORT_TEST(testFdo72031, "fdo72031.rtf")
{
- OUString aExpected("\xc3\x85", 2, RTL_TEXTENCODING_UTF8);
+ OUString aExpected(u"\u00C5");
CPPUNIT_ASSERT_EQUAL(aExpected, getRun(getParagraph(1), 1)->getString());
}