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

  1. # NOTE: Derived from blib\lib\Tk\Wm.pm.  Changes made here will be lost.
  2. package Tk::Wm;
  3.  
  4. sub iconposition
  5. {
  6.  my $w = shift;
  7.  return $w->wm('iconposition',$1,$2) if (@_ == 1 && $_[0] =~ /^(\d+),(\d+)$/); 
  8.  $w->wm('iconposition',@_);
  9. }
  10.  
  11. 1;
  12.