drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit adf4a8a509a3018b9724e8379d73b1f382351908 Author: shark <[email protected]> AuthorDate: Fri Jan 16 07:31:02 2026 +0000 Commit: Hossein <[email protected]> CommitDate: Fri Jan 16 14:37:52 2026 +0100 tdf#158067 converted OStringLiterals to custom OString literals Change-Id: Ia665466b45049485567eb73b0176ea767ae356fd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197416 Tested-by: Jenkins Reviewed-by: Hossein <[email protected]> diff --git a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx index df2f68c7f583..e8cf383787b6 100644 --- a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx +++ b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx @@ -1656,9 +1656,9 @@ void VclMetafileProcessor2D::processTextSimplePortionPrimitive2D( rTxt, nTextPosition, rLocale, css::i18n::WordType::ANY_WORD, true)); sal_Int32 nNextSentenceBreak( rBreakIterator.endOfSentence(rTxt, nTextPosition, rLocale)); - static constexpr OStringLiteral aCommentStringA("XTEXT_EOC"); - static constexpr OStringLiteral aCommentStringB("XTEXT_EOW"); - static constexpr OStringLiteral aCommentStringC("XTEXT_EOS"); + static constexpr OString aCommentStringA("XTEXT_EOC"_ostr); + static constexpr OString aCommentStringB("XTEXT_EOW"_ostr); + static constexpr OString aCommentStringC("XTEXT_EOS"_ostr); for (sal_Int32 i(nTextPosition); i < nTextPosition + nTextLength; i++) {
