Remove accidental debug code.

This commit is contained in:
Jeff Young 2020-10-05 12:27:21 +01:00
parent c9096c7168
commit 5705859e9e
1 changed files with 3 additions and 4 deletions

View File

@ -100,10 +100,9 @@ public:
for( auto subshape : subshapes ) for( auto subshape : subshapes )
{ {
BOX2I bbox = subshape->BBox(); BOX2I bbox = subshape->BBox();
bbox.Inflate( Millimeter2iu( 20 ) ); const int mmin[2] = { bbox.GetX(), bbox.GetY() };
const int mmin[2] = { bbox.GetX(), bbox.GetY() }; const int mmax[2] = { bbox.GetRight(), bbox.GetBottom() };
const int mmax[2] = { bbox.GetRight(), bbox.GetBottom() };
m_tree[layer]->Insert( mmin, mmax, new ITEM_WITH_SHAPE( aItem, subshape, itemShape ) ); m_tree[layer]->Insert( mmin, mmax, new ITEM_WITH_SHAPE( aItem, subshape, itemShape ) );
m_count++; m_count++;