Formatting.
This commit is contained in:
parent
6c366dce9a
commit
408f505b75
|
@ -574,15 +574,15 @@ bool PNS_KICAD_IFACE_BASE::inheritTrackWidth( PNS::ITEM* aItem, int* aInheritedW
|
||||||
assert( aItem->Owner() != nullptr );
|
assert( aItem->Owner() != nullptr );
|
||||||
|
|
||||||
auto tryGetTrackWidth =
|
auto tryGetTrackWidth =
|
||||||
[]( PNS::ITEM* aPnsItem ) -> int
|
[]( PNS::ITEM* aPnsItem ) -> int
|
||||||
{
|
|
||||||
switch( aPnsItem->Kind() )
|
|
||||||
{
|
{
|
||||||
case PNS::ITEM::SEGMENT_T: return static_cast<PNS::SEGMENT*>( aPnsItem )->Width();
|
switch( aPnsItem->Kind() )
|
||||||
case PNS::ITEM::ARC_T: return static_cast<PNS::ARC*>( aPnsItem )->Width();
|
{
|
||||||
default: return -1;
|
case PNS::ITEM::SEGMENT_T: return static_cast<PNS::SEGMENT*>( aPnsItem )->Width();
|
||||||
}
|
case PNS::ITEM::ARC_T: return static_cast<PNS::ARC*>( aPnsItem )->Width();
|
||||||
};
|
default: return -1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
int itemTrackWidth = tryGetTrackWidth( aItem );
|
int itemTrackWidth = tryGetTrackWidth( aItem );
|
||||||
|
|
||||||
|
@ -594,16 +594,9 @@ bool PNS_KICAD_IFACE_BASE::inheritTrackWidth( PNS::ITEM* aItem, int* aInheritedW
|
||||||
|
|
||||||
switch( aItem->Kind() )
|
switch( aItem->Kind() )
|
||||||
{
|
{
|
||||||
case PNS::ITEM::VIA_T:
|
case PNS::ITEM::VIA_T: p = static_cast<PNS::VIA*>( aItem )->Pos(); break;
|
||||||
p = static_cast<PNS::VIA*>( aItem )->Pos();
|
case PNS::ITEM::SOLID_T: p = static_cast<PNS::SOLID*>( aItem )->Pos(); break;
|
||||||
break;
|
default: return false;
|
||||||
|
|
||||||
case PNS::ITEM::SOLID_T:
|
|
||||||
p = static_cast<PNS::SOLID*>( aItem )->Pos();
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const PNS::JOINT* jt = static_cast<const PNS::NODE*>( aItem->Owner() )->FindJoint( p, aItem );
|
const PNS::JOINT* jt = static_cast<const PNS::NODE*>( aItem->Owner() )->FindJoint( p, aItem );
|
||||||
|
|
Loading…
Reference in New Issue