Browse Source

Fix a change committed by mistake (fortunately in a not used code) in cff2583f

newinvert
jean-pierre charras 2 years ago
parent
commit
e82f9e0305
  1. 2
      common/validators.cpp

2
common/validators.cpp

@ -424,7 +424,7 @@ bool FIELD_VALIDATOR::Validate( wxWindow* aParent )
else if( excludeChar == wxT( " " ) )
badCharsFound.Add( _( "space" ) );
else
badCharsFound.Add( wxString::Format( wxT( "'%c'" ), excludeChar ) );
badCharsFound.Add( wxString::Format( wxT( "'%s'" ), excludeChar ) );
}
}
#endif

Loading…
Cancel
Save