Clean up dead code from last commit.

This commit is contained in:
Jeff Young 2021-12-08 16:58:02 +00:00
parent 3180764309
commit df1e74d418
1 changed files with 0 additions and 12 deletions

View File

@ -1726,18 +1726,6 @@ int EDIT_TOOL::Remove( const TOOL_EVENT& aEvent )
return 0;
}
auto isSelectedForDelete =
[]( BOARD_ITEM* aItem )
{
for( BOARD_ITEM* item = aItem; item; item = item->GetParentGroup() )
{
if( item->IsSelected() )
return true;
}
return false;
};
std::vector<BOARD_ITEM*> lockedItems;
Activate();