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

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


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

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

    pdf: move PDFDest out of PDFWriterImpl class
    
    Change-Id: I5d5e2d6e9e922a28d7de5bab9fb94f36960b78dd
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86006
    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 e93d4005121e..60679ffe5a40 100644
--- a/vcl/source/gdi/pdfwriter_impl.hxx
+++ b/vcl/source/gdi/pdfwriter_impl.hxx
@@ -313,6 +313,13 @@ struct EmbedFont
     EmbedFont() : m_nNormalFontID( 0 ) {}
 };
 
+struct PDFDest
+{
+    sal_Int32                   m_nPage;
+    PDFWriter::DestAreaType     m_eType;
+    tools::Rectangle                   m_aRect;
+};
+
 }
 
 class PDFWriterImpl : public VirtualDevice
@@ -322,13 +329,6 @@ class PDFWriterImpl : public VirtualDevice
 public:
     friend struct vcl::pdf::PDFPage;
 
-    struct PDFDest
-    {
-        sal_Int32                   m_nPage;
-        PDFWriter::DestAreaType     m_eType;
-        tools::Rectangle                   m_aRect;
-    };
-
 //--->i56629
     struct PDFNamedDest
     {


More information about the Libreoffice-commits mailing list