# NOTE: Derived from blib\lib\Tk\Frame.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Tk::Frame; #line 363 "blib\lib\Tk\Frame.pm (autosplit into blib\lib\auto\Tk\Frame\FindMenu.al)" sub FindMenu { my ($w,$char) = @_; my $child; my $match; foreach $child ($w->children) { next unless (ref $child); $match = $child->FindMenu($char); return $match if (defined $match); } return undef; } 1; # end of Tk::Frame::FindMenu