[poppler] poppler/poppler: CairoOutputDev.cc,1.45,1.46

Jeff Muizelaar jrmuizel at kemper.freedesktop.org
Tue Dec 12 07:24:02 EET 2006


Update of /cvs/poppler/poppler/poppler
In directory kemper:/tmp/cvs-serv2592/poppler

Modified Files:
	CairoOutputDev.cc 
Log Message:
2006-12-12  Jeff Muizelaar  <jeff at infidigm.net>

	* poppler/CairoOutputDev.cc: Change a cairo_set_matrix to 
	cairo_transform so that we don't blindly clobber the existing matrix.
	Patch by Daniel Colascione.
	Fixes #9190.


Index: CairoOutputDev.cc
===================================================================
RCS file: /cvs/poppler/poppler/poppler/CairoOutputDev.cc,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- CairoOutputDev.cc	7 Nov 2006 23:53:31 -0000	1.45
+++ CairoOutputDev.cc	12 Dec 2006 05:24:00 -0000	1.46
@@ -134,7 +134,7 @@
   matrix.x0 = ctm[4];
   matrix.y0 = ctm[5];
 
-  cairo_set_matrix (cairo, &matrix);
+  cairo_transform (cairo, &matrix);
 
   OutputDev::setDefaultCTM(ctm);
 }



More information about the poppler mailing list