diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-06 18:28:51 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-07 08:46:21 +0200 |
commit | 1de066d04f73a0e901e875597b8244a3ecdf624c (patch) | |
tree | 4a69bed8e8d1dd22e9a317f8718940c459373474 /chart2/source/model/main/Title.cxx | |
parent | 4d97239b7a92c8dc1c1ee9a6474768ed1e744ef5 (diff) |
loplugin:ostr in chart2
Change-Id: I2985b6793a776639214a25bf9732c000b9026bfc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167236
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'chart2/source/model/main/Title.cxx')
-rw-r--r-- | chart2/source/model/main/Title.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/model/main/Title.cxx b/chart2/source/model/main/Title.cxx index 10551ce6e318..d882304d43d3 100644 --- a/chart2/source/model/main/Title.cxx +++ b/chart2/source/model/main/Title.cxx @@ -311,7 +311,7 @@ void Title::fireModifyEvent() OUString SAL_CALL Title::getImplementationName() { - return "com.sun.star.comp.chart2.Title"; + return u"com.sun.star.comp.chart2.Title"_ustr; } sal_Bool SAL_CALL Title::supportsService( const OUString& rServiceName ) @@ -322,10 +322,10 @@ sal_Bool SAL_CALL Title::supportsService( const OUString& rServiceName ) css::uno::Sequence< OUString > SAL_CALL Title::getSupportedServiceNames() { return { - "com.sun.star.chart2.Title", - "com.sun.star.style.ParagraphProperties", - "com.sun.star.beans.PropertySet", - "com.sun.star.layout.LayoutElement" }; + u"com.sun.star.chart2.Title"_ustr, + u"com.sun.star.style.ParagraphProperties"_ustr, + u"com.sun.star.beans.PropertySet"_ustr, + u"com.sun.star.layout.LayoutElement"_ustr }; } // needed by MSC compiler |