Make Eeschema component cache library rescue check for pin name changes.

This commit is contained in:
Chris Pavlina 2015-06-01 08:51:02 -04:00 committed by Wayne Stambaugh
parent 0cab3e47ad
commit 1c47a85ab9
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ static void find_rescues( std::vector<SCH_COMPONENT*>& aComponents, PART_LIBS* a
// Test whether there is a conflict
if( !cache_match || !lib_match )
continue;
if( !cache_match->PinsConflictWith( *lib_match, /* aTestNums */ true, /* aTestNames */ false,
if( !cache_match->PinsConflictWith( *lib_match, /* aTestNums */ true, /* aTestNames */ true,
/* aTestType */ true, /* aTestOrientation */ true, /* aTestLength */ false ))
continue;