home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / perl5 / Debconf / Element / Dialog / Text.pm < prev   
Encoding:
Perl POD Document  |  2006-07-24  |  330 b   |  21 lines

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