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

Vort vvort at yandex.ru
Thu May 15 04:49:02 PDT 2014


 sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a050856a670db629336681cdf4e5f36c4efefa57
Author: Vort <vvort at yandex.ru>
Date:   Sun May 11 10:38:04 2014 +0300

    fdo#78549 PDF Import: fix incorrect transformation matrix writing
    
    Change-Id: I60d77e01ea7774c234d1ad1b81b90a7db3461e22
    Reviewed-on: https://gerrit.libreoffice.org/9310
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
index c5b9aa1..c5096ad 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
@@ -605,8 +605,8 @@ void PDFOutDev::setDefaultCTM(double *pMat)
 
     printf( "updateCtm %f %f %f %f %f %f\n",
             normalize(pMat[0]),
-            normalize(pMat[2]),
             normalize(pMat[1]),
+            normalize(pMat[2]),
             normalize(pMat[3]),
             normalize(pMat[4]),
             normalize(pMat[5]) );
@@ -624,8 +624,8 @@ void PDFOutDev::updateCTM(GfxState* state,
 
     printf( "updateCtm %f %f %f %f %f %f\n",
             normalize(pMat[0]),
-            normalize(pMat[2]),
             normalize(pMat[1]),
+            normalize(pMat[2]),
             normalize(pMat[3]),
             normalize(pMat[4]),
             normalize(pMat[5]) );


More information about the Libreoffice-commits mailing list