diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-11 10:38:52 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-11 11:41:23 +0200 |
commit | 2933de9ce0f820e59ac4eef796fdde2566e38d42 (patch) | |
tree | c99093fe9fe8ff19f6542c8e553e247327ded570 /cppcanvas/source/mtfrenderer/emfplus.cxx | |
parent | 140f9fa6dcbd9c3a49cc2027f140a7ec44ac06fe (diff) |
Fix typo and make the debug output a bit more readable
Change-Id: I45cb5303bfcc1f3df8455ac454f3e1b3fc5a11e0
Diffstat (limited to 'cppcanvas/source/mtfrenderer/emfplus.cxx')
-rw-r--r-- | cppcanvas/source/mtfrenderer/emfplus.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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: |