summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2023-03-03 18:31:33 +0100
committerMichael Stahl <michael.stahl@allotropia.de>2023-03-08 10:38:00 +0000
commit4e5489297cb5cfb8d2387d57da7cd92ae1a3ebb1 (patch)
tree28b999305b8189adf7012fcd7bb530207dd237a1 /include
parentff5d23638b198438906fa3f91cee38a8b1dbc82e (diff)
vcl,filter,officecfg: PDF export: add PDFVersion::PDF_1_7
Also, PDF_A_2 and PDF_A_3 are based on PDF 1.7, claims Wikipedia. Change-Id: Ia0afd9a38859953db945a5d1568f171f3d500b09 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148386 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/pdfwriter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx
index 366cd6714412..8e3c139e8943 100644
--- a/include/vcl/pdfwriter.hxx
+++ b/include/vcl/pdfwriter.hxx
@@ -105,8 +105,8 @@ public:
enum class Orientation { Portrait, Inherit };
- // in case the below enum is added PDF_1_6 PDF_1_7, please add them just after PDF_1_5
- enum class PDFVersion { PDF_1_2, PDF_1_3, PDF_1_4, PDF_1_5, PDF_1_6, PDF_A_1, PDF_A_2, PDF_A_3 };//i59651, PDF/A-1b & -1a, only -1b implemented for now
+ // in case the below enum is added PDF_2_0, please add just after PDF_1_7
+ enum class PDFVersion { PDF_1_2, PDF_1_3, PDF_1_4, PDF_1_5, PDF_1_6, PDF_1_7, PDF_A_1, PDF_A_2, PDF_A_3 };//i59651, PDF/A-1b & -1a, only -1b implemented for now
// for the meaning of DestAreaType please look at PDF Reference Manual
// version 1.4 section 8.2.1, page 475
enum class DestAreaType { XYZ, FitRectangle };