summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2023-05-12 11:47:24 +0200
committerMichael Stahl <michael.stahl@allotropia.de>2023-05-12 13:45:38 +0200
commit0025190152a35e18c7847e91ad171df339657910 (patch)
treef98fbc5140a317f775bca50af6c6a1a9a1b539b7 /vcl/source
parent8abce26253f3ba6bf74ba419775bf2b4a2f23546 (diff)
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.stahl@allotropia.de>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx2
1 files changed, 1 insertions, 1 deletions
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() )