summaryrefslogtreecommitdiff
path: root/vcl/inc/pdf
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2024-06-05 11:08:56 +0900
committerTomaž Vajngerl <quikee@gmail.com>2024-06-05 08:36:40 +0200
commitbd7638485220f17472157a02608e1080c25376cc (patch)
treea615aac390eb8f6cfe44466c993d18c71c655ee1 /vcl/inc/pdf
parentb4f416abc245ae63c164d51ee9fd4d4c849e0411 (diff)
annot: improve PDF annotation export and clean-up PDFNote class
Add support for exporting more PDF annotation types and props. Prefix member variables in PDFNote class, extract it out of pdfwriter.hxx file into it's own header file. Change-Id: I99fb4cbb0c68fcec6585c9c21d81daaef26344cc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168418 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl/inc/pdf')
-rw-r--r--vcl/inc/pdf/pdfwriter_impl.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/inc/pdf/pdfwriter_impl.hxx b/vcl/inc/pdf/pdfwriter_impl.hxx
index 2afab075dbe6..9b2db532e6c0 100644
--- a/vcl/inc/pdf/pdfwriter_impl.hxx
+++ b/vcl/inc/pdf/pdfwriter_impl.hxx
@@ -55,6 +55,7 @@
#include <comphelper/hash.hxx>
#include <tools/stream.hxx>
#include <vcl/BinaryDataContainer.hxx>
+#include <vcl/pdf/PDFNote.hxx>
#include <vcl/filter/pdfobjectcontainer.hxx>
#include <vcl/settings.hxx>
@@ -458,7 +459,7 @@ struct PDFPopupAnnotation : public PDFAnnotation
struct PDFNoteEntry : public PDFAnnotation
{
- PDFNote m_aContents;
+ vcl::pdf::PDFNote m_aContents;
PDFPopupAnnotation m_aPopUpAnnotation;