home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / perl5 / Debconf / Element / Editor / Text.pm < prev   
Encoding:
Perl POD Document  |  2009-03-24  |  316 b   |  20 lines

  1. #!/usr/bin/perl -w
  2. # This file was preprocessed, do not edit!
  3.  
  4.  
  5. package Debconf::Element::Editor::Text;
  6. use strict;
  7. use base qw(Debconf::Element);
  8.  
  9.  
  10. sub show {
  11.     my $this=shift;
  12.  
  13.     $this->frontend->comment($this->question->extended_description."\n\n".
  14.         $this->question->description."\n\n");
  15.     
  16.     $this->value('');
  17. }
  18.  
  19. 1
  20.