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

  1. # NOTE: Derived from ..\blib\lib\Tk\Listbox.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package Tk::Listbox;
  5.  
  6. #line 347 "..\blib\lib\Tk\Listbox.pm (autosplit into ..\blib\lib\auto\Tk\Listbox\UNSHIFT.al)"
  7. # UNSHIFT
  8. # -------
  9. # Insert elements at the beginning of the Listbox
  10. sub UNSHIFT {
  11.    my ( $class, @list ) = @_;
  12.    ${$class->{OBJECT}}->insert(0, @list);
  13. }
  14.  
  15. # end of Tk::Listbox::UNSHIFT
  16. 1;
  17.