home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _bd3cbd3353cbdce650c88b57e6df4b95 < prev    next >
Encoding:
Text File  |  2004-04-13  |  405 b   |  22 lines

  1. # Copyright (c) 1995-1999 Nick Ing-Simmons. All rights reserved.
  2. # This program is free software; you can redistribute it and/or
  3. # modify it under the same terms as Perl itself.
  4.  
  5. package Tk::Label;
  6. require Tk;
  7.  
  8.  
  9. use vars qw($VERSION);
  10. $VERSION = '3.011'; # $Id: //depot/Tk8/Tk/Label.pm#11 $
  11.  
  12. use base  qw(Tk::Widget);
  13.  
  14. Construct Tk::Widget 'Label';
  15.  
  16. sub Tk_cmd { \&Tk::label }
  17.  
  18. 1;
  19.  
  20.  
  21.  
  22.