~cjwatson/debconf/dbus

« back to all changes in this revision

Viewing changes to Debconf/Element/Gnome/Select.pm

  • Committer: joey
  • Date: 2004-01-05 05:16:58 UTC
  • Revision ID: vcs-imports@canonical.com-20040105051658-f686b6d8049b4381
   * Port of the gnome frontend to GNOME2 libs:
   * Debconf/Frontend/Gnome.pm, Debconf/Element/Gnome.pm,
     Debconf/Element/Gnome/*.pm:
     - fixed debian logo exibition
   * Makefile, debian-logo.png, debian-logo.xpm:
     - use a png instead of a xpm to have a cuter interface =P
   * Above changes from Gustavo Noronha Silva. Closes: #225503
   * Fix broken fallback from noninteractive frontend in dpkg-reconfgure.
     Closes: #226205

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
package Debconf::Element::Gnome::Select;
10
10
use strict;
11
 
use Gtk;
12
 
use Gnome;
 
11
use Gtk2;
 
12
use Gnome2;
 
13
use utf8;
13
14
use base qw(Debconf::Element::Gnome Debconf::Element::Select);
14
15
 
15
16
=head1 DESCRIPTION
26
27
 
27
28
        $this->SUPER::init(@_);
28
29
 
29
 
        $this->widget(Gtk::Combo->new);
 
30
        $this->widget(Gtk2::Combo->new);
30
31
        $this->widget->show;
31
32
 
32
33
        $this->widget->set_popdown_strings(@choices);
64
65
=head1 AUTHOR
65
66
 
66
67
Eric Gillespie <epg@debian.org>
 
68
Gustavo Noronha Silva <kov@debian.org>
67
69
 
68
70
=cut
69
71