diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 18:12:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 18:12:49 +0200 |
commit | 48ebe0987da9c95d8582fd6b9607b84a4bed0f75 (patch) | |
tree | 228153db64b743d10ca0a970597e37e2cfe8deb6 /sw | |
parent | 4bb2d015b332aa5e7623b4edba53f0503c64bbba (diff) |
loplugin:stringconstant
Change-Id: Id839c650721efed3bc734da49ebd5a0074897cbe
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 0a99d2630fae..7e6ad7ed154d 100644 --- a/sw/qa/extras/uiwriter/uiwriter.cxx +++ b/sw/qa/extras/uiwriter/uiwriter.cxx @@ -1384,8 +1384,8 @@ void SwUiWriterTest::testTdf88899() uno::Reference<util::XNumberFormatsSupplier> xNumberFormatsSupplier(mxComponent, uno::UNO_QUERY); uno::Reference<util::XNumberFormatTypes> xNumFormat(xNumberFormatsSupplier->getNumberFormats(), uno::UNO_QUERY); com::sun::star::lang::Locale alocale; - alocale.Language = OUString("en"); - alocale.Country = OUString("US"); + alocale.Language = "en"; + alocale.Country = "US"; sal_Int16 key = xNumFormat->getStandardFormat(util::NumberFormat::DATETIME, alocale); xPropSet->setPropertyValue(OUString("NumberFormat"), uno::makeAny(sal_Int16(key))); //Inserting Text Content |