summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/region.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/region.cxx')
-rw-r--r--vcl/source/gdi/region.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx
index 3992b774630d..e4c1a3a7c4f7 100644
--- a/vcl/source/gdi/region.cxx
+++ b/vcl/source/gdi/region.cxx
@@ -382,34 +382,6 @@ const char* ImplDbgTestRegion( const void* pObj )
return NULL;
}
-void TraceBands (const ImplRegionBand* pFirstBand)
-{
- int nBandIndex (0);
- const ImplRegionBand* pBand = pFirstBand;
- while (pBand != NULL)
- {
- OSL_TRACE(" band %d %d->%d : ", nBandIndex++,
- pBand->mnYTop, pBand->mnYBottom);
-
- ImplRegionBandPoint* pPoint = pBand->mpFirstBandPoint;
- while (pPoint != NULL)
- {
- OSL_TRACE(" %d ", pPoint->mnX);
- pPoint = pPoint->mpNextBandPoint;
- }
- OSL_TRACE(" | ");
-
- ImplRegionBandSep* pSep = pBand->mpFirstSep;
- while (pSep != NULL)
- {
- OSL_TRACE(" %d->%d ", pSep->mnXLeft, pSep->mnXRight);
- pSep = pSep->mpNextSep;
- }
- OSL_TRACE("\n");
-
- pBand = pBand->mpNextBand;
- }
-}
#endif
// =======================================================================