summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.hxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx
index 8b2a98dbdad6..8ee67280c962 100644
--- a/vcl/source/gdi/pdfwriter_impl.hxx
+++ b/vcl/source/gdi/pdfwriter_impl.hxx
@@ -329,6 +329,25 @@ struct PDFNamedDest
tools::Rectangle m_aRect;
};
+struct PDFOutlineEntry
+{
+ sal_Int32 m_nObject;
+ sal_Int32 m_nParentObject;
+ sal_Int32 m_nNextObject;
+ sal_Int32 m_nPrevObject;
+ std::vector< sal_Int32 > m_aChildren;
+ OUString m_aTitle;
+ sal_Int32 m_nDestID;
+
+ PDFOutlineEntry()
+ : m_nObject( 0 ),
+ m_nParentObject( 0 ),
+ m_nNextObject( 0 ),
+ m_nPrevObject( 0 ),
+ m_nDestID( -1 )
+ {}
+};
+
}
class PDFWriterImpl : public VirtualDevice
@@ -338,25 +357,6 @@ class PDFWriterImpl : public VirtualDevice
public:
friend struct vcl::pdf::PDFPage;
- struct PDFOutlineEntry
- {
- sal_Int32 m_nObject;
- sal_Int32 m_nParentObject;
- sal_Int32 m_nNextObject;
- sal_Int32 m_nPrevObject;
- std::vector< sal_Int32 > m_aChildren;
- OUString m_aTitle;
- sal_Int32 m_nDestID;
-
- PDFOutlineEntry()
- : m_nObject( 0 ),
- m_nParentObject( 0 ),
- m_nNextObject( 0 ),
- m_nPrevObject( 0 ),
- m_nDestID( -1 )
- {}
- };
-
struct PDFAnnotation
{
sal_Int32 m_nObject;