blob: cca4f0d642a95099f5af128839dbb7475c83ba6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 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 208 "blib\lib\Tk\Frame.pm (autosplit into blib\lib\auto\Tk\Frame\sbset.al)"
sub sbset
{
my ($cw,$sb,$ref,@args) = @_;
$sb->set(@args);
$cw->queuePack if (@args == 2 && $sb->Needed != $$ref);
}
# end of Tk::Frame::sbset
1;
|