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

  1. # NOTE: Derived from blib\lib\Tk.pm.  Changes made here will be lost.
  2. package Tk;
  3.  
  4. # These wrappers don't use method syntax so need to live
  5. # in same package as raw Tk routines are newXS'ed into.
  6.  
  7. sub Selection
  8. {my $widget = shift;
  9.  my $cmd    = shift;
  10.  croak "Use SelectionOwn/SelectionOwner" if ($cmd eq 'own');
  11.  croak "Use Selection\u$cmd()";
  12. }
  13.  
  14. 1;
  15.