diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-06-03 09:11:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-06-03 12:07:20 +0200 |
commit | 83d0b6bd8da7495bc962b83a6638e2aaab90a5ae (patch) | |
tree | 32692c09f4c57bef78c39695d90be9d6132d0d1a /sc/source/ui/attrdlg/scuiexp.cxx | |
parent | 24b06580577425681e22472ee68ab00e9c509a83 (diff) |
loplugin:ostr in sc
Change-Id: I72438d38c75a7facb9bd5f9cfb7be1213ac3d141
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168356
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/attrdlg/scuiexp.cxx')
-rw-r--r-- | sc/source/ui/attrdlg/scuiexp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/attrdlg/scuiexp.cxx b/sc/source/ui/attrdlg/scuiexp.cxx index 1179050037b2..3da9d2ed7b42 100644 --- a/sc/source/ui/attrdlg/scuiexp.cxx +++ b/sc/source/ui/attrdlg/scuiexp.cxx @@ -33,7 +33,7 @@ public: // css::lang::XServiceInfo: virtual OUString SAL_CALL getImplementationName() override { - return "com.sun.star.sheet.comp.CreateDialogFactoryService"; + return u"com.sun.star.sheet.comp.CreateDialogFactoryService"_ustr; } virtual sal_Bool SAL_CALL supportsService(const OUString& serviceName) override { @@ -41,7 +41,7 @@ public: } virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override { - return { "com.sun.star.sheet.CreateDialogFactoryService" }; + return { u"com.sun.star.sheet.CreateDialogFactoryService"_ustr }; } // XUnoTunnel |