diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-22 12:46:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-23 08:37:41 +0200 |
commit | dddba389b79647f69f447e576cf7e880be5661c6 (patch) | |
tree | 10d8da4fb55cf603a70229abddc460b0646ed237 /sw/source/ui/vba/vbafont.cxx | |
parent | b1f4a39a326bcaf06068914c03c3dea6f9aeebd8 (diff) |
loplugin:ostr in sw/../vba
Change-Id: I73491b481fb82785a21f7239fff62f812dd7440c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167953
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/ui/vba/vbafont.cxx')
-rw-r--r-- | sw/source/ui/vba/vbafont.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/vba/vbafont.cxx b/sw/source/ui/vba/vbafont.cxx index 91a31ec66470..2fec9d3b0ba0 100644 --- a/sw/source/ui/vba/vbafont.cxx +++ b/sw/source/ui/vba/vbafont.cxx @@ -82,7 +82,7 @@ private: public: static OUString propName() { - return "CharUnderline"; + return u"CharUnderline"_ustr; } static UnderLineMapper& instance() @@ -139,7 +139,7 @@ SwVbaFont::setUnderline( const uno::Any& _underline ) OUString SwVbaFont::getServiceImplName() { - return "SwVbaFont"; + return u"SwVbaFont"_ustr; } uno::Any SAL_CALL @@ -227,7 +227,7 @@ SwVbaFont::getServiceNames() { static uno::Sequence< OUString > const aServiceNames { - "ooo.vba.word.Font" + u"ooo.vba.word.Font"_ustr }; return aServiceNames; } |