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 / Note.pm < prev    next >
Encoding:
Perl POD Document  |  2006-07-24  |  365 b   |  24 lines

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