From b78caf96451de40f7aa54e5b555fa0195e3d0882 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 11 Apr 2014 13:09:38 +0300 Subject: Add a couple of SAL_INFOs using drawinglayer::primitive2d::idToString() Change-Id: I3fce5ca1af15714b8b20b1b273ccf41a49cb98ff --- drawinglayer/source/processor2d/vclpixelprocessor2d.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx index 990aac0bcc9f..73d12f3ebedc 100644 --- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx +++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx @@ -926,6 +926,9 @@ namespace drawinglayer bDrawTransparentUsed = bAllowed && tryDrawPolygonStrokePrimitive2DDirect(*pPoStroke, rUniTransparenceCandidate.getTransparence()); break; } + default: + SAL_INFO("drawinglayer", "default case for " << drawinglayer::primitive2d::idToString(rCandidate.getPrimitive2DID())); + break; } } } @@ -1227,6 +1230,7 @@ namespace drawinglayer } default : { + SAL_INFO("drawinglayer", "default case for " << drawinglayer::primitive2d::idToString(rCandidate.getPrimitive2DID())); // process recursively process(rCandidate.get2DDecomposition(getViewInformation2D())); break; -- cgit