diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-07 10:46:33 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-07 10:47:57 +0200 |
commit | db738619494a5f53d132c0ed4969368ad5147ca2 (patch) | |
tree | 369db84c5ae4f953ca8ea3c13b9f4ca2147616db /cppcanvas | |
parent | 222119cde3d6e3d9f0a6acba24c188500d1b6103 (diff) |
log point types as numbers and not as ascii chars with the value of the number
Change-Id: Ia64c2b3a53f150afd3c194598dc3bf7d6c5d3b17
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/mtfrenderer/emfplus.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx index 4cfd7b998e69..b296075d8f31 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 (); |