Kaydet (Commit) e50ef531 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix adaption to SAL_INFO

Change-Id: I12e32c0323e21946b795ca7f2af392930f55eed6
üst 70100b82
......@@ -1451,16 +1451,14 @@ namespace cppcanvas
}
case EmfPlusRecordTypeFillPolygon:
{
#if OSL_DEBUG_LEVEL > 1
sal_uInt8 index = flags & 0xff;
#endif
sal_uInt32 brushIndexOrColor;
sal_Int32 points;
rMF >> brushIndexOrColor;
rMF >> points;
SAL_INFO("cppcanvas.emf", "EMF+ FillPolygon in slot: " << &index << " points: " << points);
SAL_INFO("cppcanvas.emf", "EMF+ FillPolygon in slot: " << +index << " points: " << points);
SAL_INFO("cppcanvas.emf", "EMF+\t: " << ((flags & 0x8000) ? "color" : "brush index") << " 0x" << std::hex << brushIndexOrColor);
EMFPPath path (points, true);
......
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