basegfx/source/tools/unopolypolygon.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit be6243144eb39838294258a80b1f153bcd3e7029 Author: Arnaud VERSINI <arnaud.vers...@pm.me> AuthorDate: Sun Mar 3 16:33:19 2024 +0100 Commit: Arnaud Versini <arnaud.vers...@pm.me> CommitDate: Sun Mar 10 17:17:00 2024 +0100 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.vers...@pm.me> 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