symbol_checker: better message about reference prefix.

This commit is contained in:
jean-pierre charras 2022-06-15 14:43:27 +02:00
parent 2c280e83c3
commit 631eecd7d6
1 changed files with 4 additions and 1 deletions

View File

@ -51,13 +51,16 @@ void CheckLibSymbol( LIB_SYMBOL* aSymbol, std::vector<wxString>& aMessages,
wxString msg;
// Test reference prefix validity:
// if the symbol is saved in a library, the prefix should not ends by a digit or a '?'
// but it is acceptable if the symbol is saved to aschematic
wxString reference_base = aSymbol->GetReferenceField().GetText();
wxString illegal_end( wxT( "0123456789?" ) );
wxUniChar last_char = reference_base.Last();
if( illegal_end.Find( last_char ) != wxNOT_FOUND )
{
msg.Printf( _( "<b>Illegal Reference prefix:</b><br>Reference Prefix cannot ends by '%s'" ),
msg.Printf( _( "<b>Warning: reference prefix</b><br>prefix ending by '%s' can create"
" issues if saved in a symbol library" ),
illegal_end );
msg += wxT( "<br><br>" );
aMessages.push_back( msg );