vcl/source/gdi/pdfwriter_impl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 0025190152a35e18c7847e91ad171df339657910 Author: Michael Stahl <michael.st...@allotropia.de> AuthorDate: Fri May 12 11:47:24 2023 +0200 Commit: Michael Stahl <michael.st...@allotropia.de> CommitDate: Fri May 12 13:45:38 2023 +0200 tdf#155228 vcl: PDF export: /Tabs needs PDF name, not string (regression from commit fa3f04bdd4f73a1b3be70dfb709c44638ef7e3d9) Change-Id: I5ccc37cd538448b2cb9db594287b49869589b2db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151700 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.st...@allotropia.de> diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index 96c1193ea9ef..c930458f55ab 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -750,7 +750,7 @@ bool PDFPage::emit(sal_Int32 nParentObject ) if (PDFWriter::PDFVersion::PDF_1_5 <= m_pWriter->m_aContext.Version) { // ISO 14289-1:2014, Clause: 7.18.3 - aLine.append( "/Tabs(S)\n" ); + aLine.append( "/Tabs/S\n" ); } } if( !m_aMCIDParents.empty() )