From 2933de9ce0f820e59ac4eef796fdde2566e38d42 Mon Sep 17 00:00:00 2001 From: Fridrich Štrba Date: Tue, 11 Jun 2013 10:38:52 +0200 Subject: Fix typo and make the debug output a bit more readable Change-Id: I45cb5303bfcc1f3df8455ac454f3e1b3fc5a11e0 --- cppcanvas/source/mtfrenderer/emfplus.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cppcanvas') diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx index 111c1e2268fa..7b740478f6e2 100644 --- a/cppcanvas/source/mtfrenderer/emfplus.cxx +++ b/cppcanvas/source/mtfrenderer/emfplus.cxx @@ -836,7 +836,7 @@ namespace cppcanvas void ImplRenderer::MapToDevice (double& x, double& y) { - // TODO: other untis + // TODO: other units x = 100*nMmX*x/nPixX; y = 100*nMmY*y/nPixY; } @@ -1764,9 +1764,9 @@ namespace cppcanvas rMF >> transform; aWorldTransform.Set (transform); SAL_INFO("cppcanvas.emf", - "EMF+\tm11: " << aWorldTransform.eM11 << "m12: " << aWorldTransform.eM12 << - "EMF+\tm21: " << aWorldTransform.eM21 << "m22: " << aWorldTransform.eM22 << - "EMF+\tdx: " << aWorldTransform.eDx << "dy: " << aWorldTransform.eDy); + "EMF+\tm11: " << aWorldTransform.eM11 << "\tm12: " << aWorldTransform.eM12 << + "\tm21: " << aWorldTransform.eM21 << "\tm22: " << aWorldTransform.eM22 << + "\tdx: " << aWorldTransform.eDx << "\tdy: " << aWorldTransform.eDy); break; } case EmfPlusRecordTypeResetWorldTransform: -- cgit