summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaud VERSINI <arnaud.versini@pm.me>2024-03-03 16:33:19 +0100
committerArnaud Versini <arnaud.versini@pm.me>2024-03-10 17:17:00 +0100
commitbe6243144eb39838294258a80b1f153bcd3e7029 (patch)
treee3ca486bdb4a1df0ab8de28ad4f1a03fb264a466
parentbasctl : use OUstring literal for XServiceInfo implementation (diff)
downloadcore-be6243144eb39838294258a80b1f153bcd3e7029.tar.gz
core-be6243144eb39838294258a80b1f153bcd3e7029.zip
basegfx : use OUstring literal for XServiceInfo implementation
Change-Id: I18a17e38897c1feda7fbba330c14a79c9b6d6f93 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164306 Tested-by: Jenkins Reviewed-by: Arnaud Versini <arnaud.versini@pm.me>
-rw-r--r--basegfx/source/tools/unopolypolygon.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/tools/unopolypolygon.cxx b/basegfx/source/tools/unopolypolygon.cxx
index 41f149731965..323e06a96f18 100644
--- a/basegfx/source/tools/unopolypolygon.cxx
+++ b/basegfx/source/tools/unopolypolygon.cxx
@@ -421,7 +421,7 @@ namespace basegfx::unotools
OUString SAL_CALL UnoPolyPolygon::getImplementationName()
{
- return "gfx::internal::UnoPolyPolygon";
+ return u"gfx::internal::UnoPolyPolygon"_ustr;
}
sal_Bool SAL_CALL UnoPolyPolygon::supportsService( const OUString& ServiceName )
@@ -431,7 +431,7 @@ namespace basegfx::unotools
uno::Sequence< OUString > SAL_CALL UnoPolyPolygon::getSupportedServiceNames()
{
- return { "com.sun.star.rendering.PolyPolygon2D" };
+ return { u"com.sun.star.rendering.PolyPolygon2D"_ustr };
}
B2DPolyPolygon UnoPolyPolygon::getPolyPolygon() const