diff --git a/eeschema/lib_pin.cpp b/eeschema/lib_pin.cpp index 9f1a033fe8..1c8da16997 100644 --- a/eeschema/lib_pin.cpp +++ b/eeschema/lib_pin.cpp @@ -903,7 +903,7 @@ int LIB_PIN::compare( const LIB_ITEM& aOther, int aCompareFlags ) const if( !( aCompareFlags & COMPARE_FLAGS::UNIT ) && m_number != tmp->m_number ) return m_number.Cmp( tmp->m_number ); - int result = m_name.CmpNoCase( tmp->m_name ); + int result = m_name.Cmp( tmp->m_name ); if( result ) return result;