summaryrefslogtreecommitdiff
path: root/i18npool/source/breakiterator/breakiteratorImpl.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-18 13:26:30 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-18 14:12:28 +0100
commit585807a77e54504a2ce3c13d344aff61014c0290 (patch)
tree0d54d8a980d507bdebb782a02fe875555301b98d /i18npool/source/breakiterator/breakiteratorImpl.cxx
parent464ff17e71733fd8ed091b0cca44f49e3717fc9d (diff)
i18npool: Use appropriate OUString functions on string constants
Change-Id: I6f2fabd9248b1b385439ff5c074342029fb660e0
Diffstat (limited to 'i18npool/source/breakiterator/breakiteratorImpl.cxx')
-rw-r--r--i18npool/source/breakiterator/breakiteratorImpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/source/breakiterator/breakiteratorImpl.cxx b/i18npool/source/breakiterator/breakiteratorImpl.cxx
index 8fe57f4774a0..b708b13fbe6e 100644
--- a/i18npool/source/breakiterator/breakiteratorImpl.cxx
+++ b/i18npool/source/breakiterator/breakiteratorImpl.cxx
@@ -540,7 +540,7 @@ bool SAL_CALL BreakIteratorImpl::createLocaleSpecificBreakIterator(const OUStrin
}
Reference < uno::XInterface > xI = m_xContext->getServiceManager()->createInstanceWithContext(
- OUString("com.sun.star.i18n.BreakIterator_") + aLocaleName, m_xContext);
+ "com.sun.star.i18n.BreakIterator_" + aLocaleName, m_xContext);
if ( xI.is() ) {
xBI.set(xI, UNO_QUERY);
@@ -615,7 +615,7 @@ Sequence< OUString > SAL_CALL
BreakIteratorImpl::getSupportedServiceNames(void) throw( RuntimeException, std::exception )
{
Sequence< OUString > aRet(1);
- aRet[0] = OUString("com.sun.star.i18n.BreakIterator");
+ aRet[0] = "com.sun.star.i18n.BreakIterator";
return aRet;
}