summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-07 13:03:13 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-07 13:03:13 +0100
commit7edbe6529825f562e2eab0b7c19c8c0883ea4fea (patch)
tree6db96bb726c56fcfb500be239fbad0e4349a0e9c /sw
parent62cad676e9beb9d94e8adee6033d7c11c35baf0c (diff)
Clean up some OUString creation
Change-Id: I62d312436432939d28aced7cfc4a018adbd94c8c
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/extras/ooxmlimport/ooxmlimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index ce711756fd46..3797d900e2d3 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -1389,7 +1389,7 @@ DECLARE_OOXMLIMPORT_TEST(testTdf101626, "tdf101626.docx")
if (rProp.Name == "BulletChar")
{
// the bulletChar has to be 0x2d!
- CPPUNIT_ASSERT_EQUAL(OUString("\x2d", 1, RTL_TEXTENCODING_UTF8), rProp.Value.get<OUString>());
+ CPPUNIT_ASSERT_EQUAL(OUString("\x2d"), rProp.Value.get<OUString>());
return;
}
}