blob: 29f7e4cffca543dc21e5423bf380bec9972d111e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# NOTE: Derived from blib\lib\Tk\Widget.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Widget;
#line 1579 "blib\lib\Tk\Widget.pm (autosplit into blib\lib\auto\Tk\Widget\pathname.al)"
sub pathname
{
my ($w,$id) = @_;
my $x = $w->winfo('pathname',-displayof => oct($id));
return $x->PathName;
}
# end of Tk::Widget::pathname
1;
|