diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-19 10:30:29 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-20 10:58:12 +0200 |
commit | 734db70ec85944aefb55a41b198fe1a60b91b2ea (patch) | |
tree | 82fe72e0a4013c3a5ccc946b1c2e437377c83726 /starmath/source/unomodel.cxx | |
parent | 6ece645435f823aae5d6532fd3e3d43eec46b5fe (diff) |
Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: starmath
Change-Id: I964db94e75e19cb507508b15755e3595247b5524
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158221
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'starmath/source/unomodel.cxx')
-rw-r--r-- | starmath/source/unomodel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/unomodel.cxx b/starmath/source/unomodel.cxx index 8348287f9350..96e41599ddad 100644 --- a/starmath/source/unomodel.cxx +++ b/starmath/source/unomodel.cxx @@ -393,8 +393,8 @@ sal_Bool SmModel::supportsService(const OUString& rServiceName) uno::Sequence< OUString > SmModel::getSupportedServiceNames() { - static constexpr OUStringLiteral service1 = u"com.sun.star.document.OfficeDocument"; - static constexpr OUStringLiteral service2 = u"com.sun.star.formula.FormulaProperties"; + static constexpr OUString service1 = u"com.sun.star.document.OfficeDocument"_ustr; + static constexpr OUString service2 = u"com.sun.star.formula.FormulaProperties"_ustr; return uno::Sequence<OUString>{ service1, service2 }; } |