Cleanup.
This commit is contained in:
parent
e69c82f45f
commit
2778dc90f3
|
@ -79,6 +79,7 @@ SCH_SHEET::SCH_SHEET( const SCH_SHEET& aSheet ) :
|
|||
m_screen->IncRefCount();
|
||||
}
|
||||
|
||||
// JEY TODO: add read/write of m_showSheetName & m_showFilename to new eeschema file format....
|
||||
|
||||
SCH_SHEET::~SCH_SHEET()
|
||||
{
|
||||
|
|
|
@ -1580,9 +1580,7 @@ void BOARD::RemoveArea( PICKED_ITEMS_LIST* aDeletedList, ZONE_CONTAINER* area_to
|
|||
ZONE_CONTAINER* BOARD::InsertArea( int aNetcode, int aAreaIdx, PCB_LAYER_ID aLayer, int aCornerX,
|
||||
int aCornerY, ZONE_HATCH_STYLE aHatch )
|
||||
{
|
||||
ZONE_CONTAINER* new_area = new ZONE_CONTAINER( this );
|
||||
// JEY TODO: this should be a duplicate so we don't have to handle the UUID here....
|
||||
const_cast<UUID&>( new_area->m_Uuid ) = UUID();
|
||||
ZONE_CONTAINER* new_area = (ZONE_CONTAINER*) this->Duplicate();
|
||||
|
||||
new_area->SetNetCode( aNetcode );
|
||||
new_area->SetLayer( aLayer );
|
||||
|
|
Loading…
Reference in New Issue