Skip to content
Snippets Groups Projects
Commit 89488a43 authored by Seth Hillbrand's avatar Seth Hillbrand :flag_il:
Browse files

Pins are case-sensitive

Cleanup should remove mis-matched cases

Fixes #14415

(cherry picked from commit 09845996)
parent 798e13f7
No related branches found
No related tags found
Loading
Pipeline #817285915 failed
...@@ -398,7 +398,7 @@ bool SCH_SHEET::HasPin( const wxString& aName ) const ...@@ -398,7 +398,7 @@ bool SCH_SHEET::HasPin( const wxString& aName ) const
{ {
for( SCH_SHEET_PIN* pin : m_pins ) for( SCH_SHEET_PIN* pin : m_pins )
{ {
if( pin->GetText().CmpNoCase( aName ) == 0 ) if( pin->GetText().Cmp( aName ) == 0 )
return true; return true;
} }
...@@ -448,7 +448,7 @@ bool SCH_SHEET::HasUndefinedPins() const ...@@ -448,7 +448,7 @@ bool SCH_SHEET::HasUndefinedPins() const
for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_HIER_LABEL_T ) ) for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_HIER_LABEL_T ) )
{ {
if( !pin->GetText().CmpNoCase( static_cast<SCH_HIERLABEL*>( aItem )->GetText() ) ) if( !pin->GetText().Cmp( static_cast<SCH_HIERLABEL*>( aItem )->GetText() ) )
{ {
HLabel = static_cast<SCH_HIERLABEL*>( aItem ); HLabel = static_cast<SCH_HIERLABEL*>( aItem );
break; break;
......
...@@ -123,7 +123,7 @@ BOOST_AUTO_TEST_CASE( AddPins ) ...@@ -123,7 +123,7 @@ BOOST_AUTO_TEST_CASE( AddPins )
// now we can find it in the list // now we can find it in the list
BOOST_CHECK_EQUAL( m_sheet.HasPins(), true ); BOOST_CHECK_EQUAL( m_sheet.HasPins(), true );
BOOST_CHECK_EQUAL( m_sheet.HasPin( "pinname" ), true ); BOOST_CHECK_EQUAL( m_sheet.HasPin( "pinname" ), true );
BOOST_CHECK_EQUAL( m_sheet.HasPin( "PINname" ), true ); BOOST_CHECK_EQUAL( m_sheet.HasPin( "PINname" ), false );
BOOST_CHECK_EQUAL( m_sheet.GetPin( pinPos ), &pinRef ); BOOST_CHECK_EQUAL( m_sheet.GetPin( pinPos ), &pinRef );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment