debian-galaxy-a20e/rootfs/usr/share/perl5/Debconf/Element/Gnome/Text.pm

21 lines
290 B
Perl
Raw Permalink Normal View History

2026-08-27 13:48:54 +00:00
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
package Debconf::Element::Gnome::Text;
use strict;
use Debconf::Gettext;
use utf8;
use base qw(Debconf::Element::Gnome);
sub init {
my $this=shift;
$this->SUPER::init(@_);
$this->adddescription; # yeah, that's all
}
1