From 962f1bb95fc38cafe56ea2ba134ce19392102601 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Mon, 31 Aug 2020 07:53:55 +0200 Subject: store annotation subtype in PDFGraphicAnnotation, enum for subtype MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib804f497a6c8f609e4899f9ebcef4c1096f44ce0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102090 Tested-by: Tomaž Vajngerl Reviewed-by: Tomaž Vajngerl --- include/vcl/pdfread.hxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'include/vcl/pdfread.hxx') diff --git a/include/vcl/pdfread.hxx b/include/vcl/pdfread.hxx index 4b76d9360f2b..f60ae8ef243f 100644 --- a/include/vcl/pdfread.hxx +++ b/include/vcl/pdfread.hxx @@ -17,6 +17,8 @@ #include #include +#include + namespace com::sun::star::uno { template class Sequence; @@ -37,9 +39,11 @@ struct PDFGraphicAnnotation { OUString maAuthor; OUString maText; - // In HMM - basegfx::B2DRectangle maRectangle; + + basegfx::B2DRectangle maRectangle; // In HMM css::util::DateTime maDateTime; + + pdf::PDFAnnotationSubType meSubType; }; class PDFGraphicResult -- cgit