home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _bd3cbd3353cbdce650c88b57e6df4b95 < prev    next >
Encoding:
Text File  |  2004-06-01  |  407 b   |  22 lines

  1. # Copyright (c) 1995-2003 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 = '4.006'; # $Id: //depot/Tkutf8/Tk/Label.pm#6 $
  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.