[Libreoffice-commits] core.git: cppcanvas/source
Fridrich Å trba
fridrich.strba at bluewin.ch
Fri Jun 7 01:48:44 PDT 2013
cppcanvas/source/mtfrenderer/emfplus.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit db738619494a5f53d132c0ed4969368ad5147ca2
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Fri Jun 7 10:46:33 2013 +0200
log point types as numbers and not as ascii chars with the value of the number
Change-Id: Ia64c2b3a53f150afd3c194598dc3bf7d6c5d3b17
diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx
index 4cfd7b9..b296075 100644
--- a/cppcanvas/source/mtfrenderer/emfplus.cxx
+++ b/cppcanvas/source/mtfrenderer/emfplus.cxx
@@ -160,7 +160,7 @@ namespace cppcanvas
if (pPointTypes)
for (int i = 0; i < nPoints; i ++) {
s >> pPointTypes [i];
- SAL_INFO ("cppcanvas.emf", "EMF+\tpoint type: " << pPointTypes [i]);
+ SAL_INFO ("cppcanvas.emf", "EMF+\tpoint type: " << (int)pPointTypes [i]);
}
aPolygon.clear ();
More information about the Libreoffice-commits
mailing list