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

  1. # NOTE: Derived from blib\lib\Tk\Widget.pm.  Changes made here will be lost.
  2. package Tk::Widget;
  3.  
  4. sub PrintConfig
  5. {
  6.  require Tk::Pretty;
  7.  my ($w) = (@_);
  8.  my $c;
  9.  foreach $c ($w->configure)
  10.   {
  11.    print Tk::Pretty::Pretty(@$c),"\n";
  12.   }
  13.  
  14. 1;
  15.