diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-10 13:18:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-11 12:41:09 +0200 |
commit | bc91cc47505c448ded7297074ccff809b59e8ed1 (patch) | |
tree | ddd3d33ff41ae6021738a0dcda4f9dbb5c177dea /svx/source/unodraw/unomtabl.cxx | |
parent | 28a43d53b25c183a7997cc18819d6ee0c675df19 (diff) |
loplugin:ostr in svx
Change-Id: Ia765a03e033acb82e367873380d289587ea87d6c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167449
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'svx/source/unodraw/unomtabl.cxx')
-rw-r--r-- | svx/source/unodraw/unomtabl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/unomtabl.cxx b/svx/source/unodraw/unomtabl.cxx index 5a6872c0b777..988b6da01e5f 100644 --- a/svx/source/unodraw/unomtabl.cxx +++ b/svx/source/unodraw/unomtabl.cxx @@ -143,12 +143,12 @@ sal_Bool SAL_CALL SvxUnoMarkerTable::supportsService( const OUString& ServiceNa OUString SAL_CALL SvxUnoMarkerTable::getImplementationName() { - return "SvxUnoMarkerTable"; + return u"SvxUnoMarkerTable"_ustr; } uno::Sequence< OUString > SAL_CALL SvxUnoMarkerTable::getSupportedServiceNames( ) { - uno::Sequence<OUString> aSNS { "com.sun.star.drawing.MarkerTable" }; + uno::Sequence<OUString> aSNS { u"com.sun.star.drawing.MarkerTable"_ustr }; return aSNS; } |