diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2011-02-17 12:20:49 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2011-02-17 12:20:49 +0000 |
commit | 316ee97c621496b0fe3267f57cce81bee44ca1e6 (patch) | |
tree | cb2cab1192b4f58a7971af19b213e980bceda4b4 /Master/tlpkg/tlperl/lib/Tk/LabEntry.pm | |
parent | cd0f87b5d39480d85ad9bd4ee37f520f75bed560 (diff) |
Moving old tlperl prior to committing new one
git-svn-id: svn://tug.org/texlive/trunk@21422 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Tk/LabEntry.pm')
-rwxr-xr-x | Master/tlpkg/tlperl/lib/Tk/LabEntry.pm | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Master/tlpkg/tlperl/lib/Tk/LabEntry.pm b/Master/tlpkg/tlperl/lib/Tk/LabEntry.pm deleted file mode 100755 index 64cb392fa8c..00000000000 --- a/Master/tlpkg/tlperl/lib/Tk/LabEntry.pm +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright (c) 1995-2003 Nick Ing-Simmons. All rights reserved. -# This program is free software; you can redistribute it and/or -# modify it under the same terms as Perl itself. - -package Tk::LabEntry; - -use vars qw($VERSION); -$VERSION = '4.006'; # $Id: //depot/Tkutf8/Tk/LabEntry.pm#6 $ - -use base qw(Tk::Frame); -use Tk::widgets qw(Frame Label Entry); - -Construct Tk::Widget 'LabEntry'; - -sub Populate -{ - require Tk::Entry; - # LabeledEntry constructor. - # - my($cw, $args) = @_; - $cw->SUPER::Populate($args); - # Advertised subwidgets: entry. - my $e = $cw->Entry(); - $e->pack('-expand' => 1, '-fill' => 'both'); - $cw->Advertise('entry' => $e ); - $cw->ConfigSpecs(DEFAULT => [$e]); - $cw->Delegates(DEFAULT => $e); - $cw->AddScrollbars($e) if (exists $args->{-scrollbars}); -} - -1; |