blob: b02293300fefc901645480a8bc45d97955e1e3e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# NOTE: Derived from blib\lib\Tk\Table.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Table;
#line 554 "blib\lib\Tk\Table.pm (autosplit into blib\lib\auto\Tk\Table\Posn.al)"
sub Posn
{
my ($t,$s) = @_;
my $info = $t->{Slave}{$s->PathName};
return (wantarray) ? @$info : $info;
}
# end of Tk::Table::Posn
1;
|