Expunge the use of the word component from Eeschema code.

The only exception to this is the SPICE simulator's use of component
when referring to physical component (R, L, C, etc.) values.
This commit is contained in:
Wayne Stambaugh
2021-06-14 14:00:21 -04:00
parent 30f3d11355
commit fb46cd8bc5
89 changed files with 564 additions and 825 deletions
+2 -2
View File
@@ -329,9 +329,9 @@ int ERC_TESTER::TestMultiunitFootprints()
SCH_MULTI_UNIT_REFERENCE_MAP refMap;
sheets.GetMultiUnitSymbols( refMap, true );
for( std::pair<const wxString, SCH_REFERENCE_LIST>& component : refMap )
for( std::pair<const wxString, SCH_REFERENCE_LIST>& symbol : refMap )
{
SCH_REFERENCE_LIST& refList = component.second;
SCH_REFERENCE_LIST& refList = symbol.second;
if( refList.GetCount() == 0 )
{