Kaydet (Commit) 2933de9c authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Fix typo and make the debug output a bit more readable

Change-Id: I45cb5303bfcc1f3df8455ac454f3e1b3fc5a11e0
üst 140f9fa6
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment