summaryrefslogtreecommitdiff
path: root/sw/qa/extras/ww8export/ww8export2.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-12-09 14:19:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-12-09 16:19:13 +0100
commit6292e49355fff22f1ca549b4b81b20d495735734 (patch)
treea5e826173613ec2f42608da48baa5234dc0e68f2 /sw/qa/extras/ww8export/ww8export2.cxx
parenta0f44c862d06981d5ae2625f0a8032e40ce76c4d (diff)
Some OUString::fromUtf(u8"...") simplifications
Change-Id: I2b23d115c4df23ef99d162a02fa8f560f9a3a825 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107471 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/qa/extras/ww8export/ww8export2.cxx')
-rw-r--r--sw/qa/extras/ww8export/ww8export2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ww8export/ww8export2.cxx b/sw/qa/extras/ww8export/ww8export2.cxx
index 004451247cdf..5b60fb1b87be 100644
--- a/sw/qa/extras/ww8export/ww8export2.cxx
+++ b/sw/qa/extras/ww8export/ww8export2.cxx
@@ -538,7 +538,7 @@ DECLARE_WW8EXPORT_TEST(testTdf67207_MERGEFIELD, "mailmerge.doc")
CPPUNIT_ASSERT(xServiceInfo->supportsService("com.sun.star.text.TextField.Database"));
OUString sValue;
xTextField->getPropertyValue("Content") >>= sValue;
- CPPUNIT_ASSERT_EQUAL(OUString::fromUtf8(u8"«Name»"), sValue);
+ CPPUNIT_ASSERT_EQUAL(OUString(u"«Name»"), sValue);
uno::Reference<beans::XPropertySet> xFiledMaster = xDependent->getTextFieldMaster();
uno::Reference<lang::XServiceInfo> xFiledMasterServiceInfo(xFiledMaster, uno::UNO_QUERY_THROW);