in reply to Re: wxPerl: is AddMany implemented? (check and see with wxperl_usage)
in thread wxPerl: is AddMany implemented?
sub Wx::Sizer::AddMany { my ( $self, $flags, @many ) = @_; $self and $flags or Carp::croak "Usage: Wx::Sizer::AddMany( THIS, +optionalArrayrefOfOptions, window, ... )"; if ( 'ARRAY' eq ref $flags ) { @many or Carp::croak "Usage: Wx::Sizer::AddMany( THIS, optiona +lArrayrefOfOptions, window, ... )"; $self->Add( $_, @$flags ) for @many; } else { $self->Add($_) for $flags, @many; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: wxPerl: is AddMany implemented? (check and see with wxperl_usage)
by HelenCr (Monk) on Apr 21, 2013 at 14:37 UTC |