home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 7: Programming
/
CDAT7.iso
/
Share
/
Editores
/
Perl5
/
perl
/
lib
/
site
/
auto
/
Tk
/
Frame
/
FindMenu.al
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-08-10
|
338 b
|
19 lines
# NOTE: Derived from blib\lib\Tk\Frame.pm. Changes made here will be lost.
package Tk::Frame;
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;