diff options
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx index c5b9aa11bf9a..c5096ad44912 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]) ); |