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

  1. #!/usr/bin/perl -w
  2. # This file was preprocessed, do not edit!
  3.  
  4.  
  5. package Debconf::Element::Kde::Text;
  6. use strict;
  7. use Debconf::Gettext;
  8. use Qt;
  9. use base qw(Debconf::Element::Kde);
  10.  
  11.  
  12. sub create {
  13.     my $this=shift;
  14.     $this->SUPER::create(@_);
  15.     $this->startsect;
  16.     $this->adddescription; # yeah, that's all
  17.     $this->endsect;
  18. }
  19.  
  20.  
  21. 1
  22.