diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-12-30 17:53:49 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2019-12-30 21:14:24 +0100 |
commit | 7327e9b392124679280921131079d2c4ca2588b7 (patch) | |
tree | 3124b2428cd9f8771225f96fe08db2c1cba6e26d /vcl | |
parent | dec7ec8a73f1bb24099ab5f0a5dd8733bb4444f3 (diff) |
pdf: move PDFNoteEntry out of PDFWriterImpl class
Change-Id: I1837f85fe1a532c644581ca3103808247b335295
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86019
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx index 37b2d6762fdc..62a6f467adf2 100644 --- a/vcl/source/gdi/pdfwriter_impl.hxx +++ b/vcl/source/gdi/pdfwriter_impl.hxx @@ -386,6 +386,14 @@ struct PDFEmbeddedFile } }; +struct PDFNoteEntry : public PDFAnnotation +{ + PDFNote m_aContents; + + PDFNoteEntry() + {} +}; + } class PDFWriterImpl : public VirtualDevice @@ -411,14 +419,6 @@ public: } }; - struct PDFNoteEntry : public PDFAnnotation - { - PDFNote m_aContents; - - PDFNoteEntry() - {} - }; - struct PDFWidget : public PDFAnnotation { typedef std::unordered_map<OString, SvMemoryStream*> PDFAppearanceStreams; |