diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 07:47:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 07:48:12 +0200 |
commit | f9663211b6a452b45242786eeed227c0779fba9b (patch) | |
tree | 452f813085e22b57ea42f79e41891b86e4cb3b9a /sw | |
parent | e69fd541ca4fd542f7e39ca8a1dd9cc113b95be2 (diff) |
loplugin:stringconstant
Change-Id: I2908fc052d44a8bddf8ebb628f67ce346ac519c7
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/extras/uiwriter/uiwriter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx b/sw/qa/extras/uiwriter/uiwriter.cxx index 8bbf6ebf47b3..d3c6272f341c 100644 --- a/sw/qa/extras/uiwriter/uiwriter.cxx +++ b/sw/qa/extras/uiwriter/uiwriter.cxx @@ -1010,8 +1010,8 @@ void SwUiWriterTest::testTdf81995() { uno::Reference<text::XDefaultNumberingProvider> xDefNum(m_xSFactory->createInstance("com.sun.star.text.DefaultNumberingProvider"), uno::UNO_QUERY); com::sun::star::lang::Locale alocale; - alocale.Language = OUString("en"); - alocale.Country = OUString("US"); + alocale.Language = "en"; + alocale.Country = "US"; uno::Sequence<uno::Reference<container::XIndexAccess>> aIndexAccess(xDefNum->getDefaultOutlineNumberings(alocale)); CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aIndexAccess.getLength()); for(int i=0;i<aIndexAccess.getLength();i++) |