in reply to Tk widget derivation problems
Try:my($class, $mw) = @_; $class->SUPER::ClassInit($mw); my($self, $args) = @_; $self->SUPER::Populate($args);
my($class, @mw) = @_; $class->SUPER::ClassInit(@mw); my($self, @args) = @_; $self->SUPER::Populate(@args);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Tk widget derivation problems
by bobn (Chaplain) on Aug 02, 2003 at 16:01 UTC |