Browse Source

Ensure that we are checking case differences

When comparing symbols, look for case differences in values since
netlists are indeed case sensitive
master
Seth Hillbrand 4 weeks ago
parent
commit
89be756d1a
  1. 2
      eeschema/lib_symbol.cpp

2
eeschema/lib_symbol.cpp

@ -1706,7 +1706,7 @@ int LIB_SYMBOL::Compare( const LIB_SYMBOL& aRhs, int aCompareFlags, REPORTER* aR
if( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::EQUALITY )
{
// Compare field text content
tmp = aField->GetText().CmpNoCase( bField->GetText() );
tmp = aField->GetText().compare( bField->GetText() );
}
if( tmp == 0 )

Loading…
Cancel
Save