sdext/source/pdfimport/tree/drawtreevisiting.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
New commits: commit b48dab459a32ef2cda9e1ff40ae74016eb5e670f Author: Arnaud VERSINI <arnaud.vers...@pm.me> AuthorDate: Sun Jun 23 16:14:28 2024 +0200 Commit: Arnaud Versini <arnaud.vers...@pm.me> CommitDate: Sat Oct 26 20:33:38 2024 +0200 sdext replace OUStringLiteral with new OUString literal Change-Id: I3f2730024fa3cd81c38927d495cdff9c608bddbe Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169358 Tested-by: Jenkins Reviewed-by: Arnaud Versini <arnaud.vers...@pm.me> diff --git a/sdext/source/pdfimport/tree/drawtreevisiting.cxx b/sdext/source/pdfimport/tree/drawtreevisiting.cxx index 16142cd532c9..d99d32bbfa50 100644 --- a/sdext/source/pdfimport/tree/drawtreevisiting.cxx +++ b/sdext/source/pdfimport/tree/drawtreevisiting.cxx @@ -194,14 +194,14 @@ void DrawXmlEmitter::fillFrameProps( DrawElement& rElem, bool bWasTransformed ) { - static constexpr OUStringLiteral sDrawZIndex = u"draw:z-index"; - static constexpr OUStringLiteral sDrawStyleName = u"draw:style-name"; - static constexpr OUStringLiteral sDrawTextStyleName = u"draw:text-style-name"; - static constexpr OUStringLiteral sSvgX = u"svg:x"; - static constexpr OUStringLiteral sSvgY = u"svg:y"; - static constexpr OUStringLiteral sSvgWidth = u"svg:width"; - static constexpr OUStringLiteral sSvgHeight = u"svg:height"; - static constexpr OUStringLiteral sDrawTransform = u"draw:transform"; + static constexpr OUString sDrawZIndex = u"draw:z-index"_ustr; + static constexpr OUString sDrawStyleName = u"draw:style-name"_ustr; + static constexpr OUString sDrawTextStyleName = u"draw:text-style-name"_ustr; + static constexpr OUString sSvgX = u"svg:x"_ustr; + static constexpr OUString sSvgY = u"svg:y"_ustr; + static constexpr OUString sSvgWidth = u"svg:width"_ustr; + static constexpr OUString sSvgHeight = u"svg:height"_ustr; + static constexpr OUString sDrawTransform = u"draw:transform"_ustr; rProps[ sDrawZIndex ] = OUString::number( rElem.ZOrder ); rProps[ sDrawStyleName ] = rEmitContext.rStyles.getStyleName( rElem.StyleId );