Don't use SCH version number when inspecting PCB files.

This commit is contained in:
Jeff Young 2021-07-03 15:24:13 +01:00
parent 5507230b9b
commit bc65b7173f
1 changed files with 3 additions and 3 deletions

View File

@ -2115,7 +2115,7 @@ void PCB_PARSER::parseNETINFO_ITEM()
// Convert overbar syntax from `~...~` to `~{...}`. These were left out of the first merge
// so the version is a bit later.
if( m_requiredVersion < 20210615 )
if( m_requiredVersion < 20210606 )
name = ConvertToNewOverbarNotation( name );
NeedRIGHT();
@ -2195,7 +2195,7 @@ void PCB_PARSER::parseNETCLASS()
// Convert overbar syntax from `~...~` to `~{...}`. These were left out of the
// first merge so the version is a bit later.
if( m_requiredVersion < 20210615 )
if( m_requiredVersion < 20210606 )
nc->Add( ConvertToNewOverbarNotation( FromUTF8() ) );
else
nc->Add( FromUTF8() );
@ -4009,7 +4009,7 @@ PAD* PCB_PARSER::parsePAD( FOOTPRINT* aParent )
// Convert overbar syntax from `~...~` to `~{...}`. These were left out of the
// first merge so the version is a bit later.
if( m_requiredVersion < 20210615 )
if( m_requiredVersion < 20210606 )
netName = ConvertToNewOverbarNotation( netName );
if( netName != m_board->FindNet( pad->GetNetCode() )->GetNetname() )