diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2023-03-07 10:57:07 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2023-03-08 11:12:22 +0000 |
commit | 806e8f0232b9761e2d1896f0e4cda1d6ce0e258c (patch) | |
tree | 7a4a2f461da48f504fe1191384438091cecb6800 /include | |
parent | 3fcf9f864f9d12fdb0ade4741127c81cec74378a (diff) |
vcl: PDF export: remove versions PDF_1_2, PDF_1_3
These cannot be selected by any means, so this is all dead code.
Change-Id: Ia24dddb4c36d0a3fef60a1dbf02562a8e6dbfce7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148389
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/pdfwriter.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx index bbb2d861fe56..21f44e491b4a 100644 --- a/include/vcl/pdfwriter.hxx +++ b/include/vcl/pdfwriter.hxx @@ -106,7 +106,7 @@ public: enum class Orientation { Portrait, Inherit }; // 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 + enum class PDFVersion { 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 }; |