[Libreoffice-commits] core.git: vcl/source

Tomaž Vajngerl (via logerrit) logerrit at kemper.freedesktop.org
Mon Dec 30 16:42:23 UTC 2019


 vcl/source/gdi/pdfwriter_impl.hxx |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 3a719bb9c3eea2972d04dbb5d12d6e80129e7890
Author:     Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
AuthorDate: Mon Dec 30 12:27:23 2019 +0100
Commit:     Tomaž Vajngerl <quikee at gmail.com>
CommitDate: Mon Dec 30 17:41:49 2019 +0100

    pdf: move PDFNamedDest out of PDFWriterImpl class
    
    Change-Id: I6c1524718fce655faff08f6fc0eeba56595f9f07
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86007
    Tested-by: Jenkins
    Reviewed-by: Tomaž Vajngerl <quikee at gmail.com>

diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx
index 60679ffe5a40..8b2a98dbdad6 100644
--- a/vcl/source/gdi/pdfwriter_impl.hxx
+++ b/vcl/source/gdi/pdfwriter_impl.hxx
@@ -320,6 +320,15 @@ struct PDFDest
     tools::Rectangle                   m_aRect;
 };
 
+//--->i56629
+struct PDFNamedDest
+{
+    OUString               m_aDestName;
+    sal_Int32                   m_nPage;
+    PDFWriter::DestAreaType     m_eType;
+    tools::Rectangle                   m_aRect;
+};
+
 }
 
 class PDFWriterImpl : public VirtualDevice
@@ -329,15 +338,6 @@ class PDFWriterImpl : public VirtualDevice
 public:
     friend struct vcl::pdf::PDFPage;
 
-//--->i56629
-    struct PDFNamedDest
-    {
-        OUString               m_aDestName;
-        sal_Int32                   m_nPage;
-        PDFWriter::DestAreaType     m_eType;
-        tools::Rectangle                   m_aRect;
-    };
-
     struct PDFOutlineEntry
     {
         sal_Int32                   m_nObject;


More information about the Libreoffice-commits mailing list