diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-13 14:50:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-14 09:03:47 +0200 |
commit | 320555963d69cbe19570a555a476d0ae757fef98 (patch) | |
tree | 5bf96036078a0136c8c18519499ff86b33406e12 /svl/source/numbers/numfmuno.cxx | |
parent | e99991216e47751b80238825aaeb21702d46dc34 (diff) |
loplugin:ostr in svl
Change-Id: Idae670a53d6d9aab0ec7132077f3e7b7f6fa5287
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167595
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl/source/numbers/numfmuno.cxx')
-rw-r--r-- | svl/source/numbers/numfmuno.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svl/source/numbers/numfmuno.cxx b/svl/source/numbers/numfmuno.cxx index 0c68ea5db8a8..cf763d9249f5 100644 --- a/svl/source/numbers/numfmuno.cxx +++ b/svl/source/numbers/numfmuno.cxx @@ -331,7 +331,7 @@ sal_Int32 SAL_CALL SvNumberFormatterServiceObj::queryPreviewColorForNumber( cons OUString SAL_CALL SvNumberFormatterServiceObj::getImplementationName() { - return "com.sun.star.uno.util.numbers.SvNumberFormatterServiceObject"; + return u"com.sun.star.uno.util.numbers.SvNumberFormatterServiceObject"_ustr; } sal_Bool SAL_CALL SvNumberFormatterServiceObj::supportsService( const OUString& ServiceName ) @@ -341,7 +341,7 @@ sal_Bool SAL_CALL SvNumberFormatterServiceObj::supportsService( const OUString& uno::Sequence<OUString> SAL_CALL SvNumberFormatterServiceObj::getSupportedServiceNames() { - return { "com.sun.star.util.NumberFormatter" }; + return { u"com.sun.star.util.NumberFormatter"_ustr }; } SvNumberFormatsObj::SvNumberFormatsObj( SvNumberFormatsSupplierObj& _rParent, ::comphelper::SharedMutex _aMutex ) @@ -626,7 +626,7 @@ sal_Int32 SAL_CALL SvNumberFormatsObj::getFormatForLocale( sal_Int32 nKey, const OUString SAL_CALL SvNumberFormatsObj::getImplementationName() { - return "SvNumberFormatsObj"; + return u"SvNumberFormatsObj"_ustr; } sal_Bool SAL_CALL SvNumberFormatsObj::supportsService( const OUString& ServiceName ) @@ -636,7 +636,7 @@ sal_Bool SAL_CALL SvNumberFormatsObj::supportsService( const OUString& ServiceNa uno::Sequence<OUString> SAL_CALL SvNumberFormatsObj::getSupportedServiceNames() { - return { "com.sun.star.util.NumberFormats" }; + return { u"com.sun.star.util.NumberFormats"_ustr }; } SvNumberFormatObj::SvNumberFormatObj( SvNumberFormatsSupplierObj& rParent, sal_Int32 nK, ::comphelper::SharedMutex _aMutex ) @@ -836,7 +836,7 @@ void SAL_CALL SvNumberFormatObj::setPropertyValues( const uno::Sequence<beans::P OUString SAL_CALL SvNumberFormatObj::getImplementationName() { - return "SvNumberFormatObj"; + return u"SvNumberFormatObj"_ustr; } sal_Bool SAL_CALL SvNumberFormatObj::supportsService( const OUString& ServiceName ) @@ -846,7 +846,7 @@ sal_Bool SAL_CALL SvNumberFormatObj::supportsService( const OUString& ServiceNam uno::Sequence<OUString> SAL_CALL SvNumberFormatObj::getSupportedServiceNames() { - return { "com.sun.star.util.NumberFormatProperties" }; + return { u"com.sun.star.util.NumberFormatProperties"_ustr }; } SvNumberFormatSettingsObj::SvNumberFormatSettingsObj( SvNumberFormatsSupplierObj& rParent, ::comphelper::SharedMutex _aMutex ) @@ -962,7 +962,7 @@ void SAL_CALL SvNumberFormatSettingsObj::removeVetoableChangeListener( const OUS OUString SAL_CALL SvNumberFormatSettingsObj::getImplementationName() { - return "SvNumberFormatSettingsObj"; + return u"SvNumberFormatSettingsObj"_ustr; } sal_Bool SAL_CALL SvNumberFormatSettingsObj::supportsService( const OUString& ServiceName ) @@ -972,7 +972,7 @@ sal_Bool SAL_CALL SvNumberFormatSettingsObj::supportsService( const OUString& Se uno::Sequence<OUString> SAL_CALL SvNumberFormatSettingsObj::getSupportedServiceNames() { - return { "com.sun.star.util.NumberFormatSettings" }; + return { u"com.sun.star.util.NumberFormatSettings"_ustr }; } |