Fix RadioButton.removeItem(String)

This commit is contained in:
AmnonOwed 2015-05-05 09:13:10 +02:00
parent 8ade1d493b
commit c3bdd53a3c
1 changed files with 3 additions and 1 deletions

View File

@ -138,13 +138,15 @@ public class RadioButton extends ControlGroup< RadioButton > {
*/
public RadioButton removeItem( final String theName ) {
int n = _myRadioToggles.size( );
for ( int i = 0 ; i < n ; i++ ) {
for ( int i = n-1 ; i >= 0 ; i-- ) {
if ( ( _myRadioToggles.get( i ) ).getName( ).equals( theName ) ) {
( _myRadioToggles.get( i ) ).removeListener( this );
_myRadioToggles.get( i ).remove();
_myRadioToggles.remove( i );
}
}
updateValues( false );
updateLayout( );
return this;
}