home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / Tk / Frame / queuePack.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  262 b   |  15 lines

  1. # NOTE: Derived from blib\lib\Tk\Frame.pm.  Changes made here will be lost.
  2. package Tk::Frame;
  3.  
  4. sub queuePack
  5. {
  6.  my ($cw) = @_; 
  7.  unless ($cw->{'pack_pending'})
  8.   {
  9.    $cw->{'pack_pending'} = 1;
  10.    $cw->afterIdle([$cw,'packscrollbars']);
  11.   }
  12. }
  13.  
  14. 1;
  15.