On Thu, Jul 01, 2004 at 12:30:08PM -0500, Matthew Pressly wrote:
[...]
I found the problem:
> sub focusInEvent {
> print "focus in event\n";
> SUPER->focusInEvent();
> }
It needs to pass @_ to SUPER->focusInEvent:
sub focusInEvent {
print "focus in event\n";
SUPER->focusInEvent(@_);
}
--
Matthew