summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-06 16:50:32 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-06 16:50:32 +0000
commita2ce19815e8ddc15a4833edc498383ca99db40e5 (patch)
treede76cee46119df6d0a143a6b50fe8c368fafda0c /perl-install
parent3dfc204023a7a25db6345c11c7ff6c2c77638007 (diff)
downloaddrakx-backup-do-not-use-a2ce19815e8ddc15a4833edc498383ca99db40e5.tar
drakx-backup-do-not-use-a2ce19815e8ddc15a4833edc498383ca99db40e5.tar.gz
drakx-backup-do-not-use-a2ce19815e8ddc15a4833edc498383ca99db40e5.tar.bz2
drakx-backup-do-not-use-a2ce19815e8ddc15a4833edc498383ca99db40e5.tar.xz
drakx-backup-do-not-use-a2ce19815e8ddc15a4833edc498383ca99db40e5.zip
kill unused variables
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/harddrake26
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2
index 5102cad7d..9c9069e48 100755
--- a/perl-install/standalone/harddrake2
+++ b/perl-install/standalone/harddrake2
@@ -71,12 +71,12 @@ my %fields =
);
-my ($in, %IDs, $pid, $w);
+my ($in, $pid, $w);
my (%options, %check_boxes);
my $conffile = "/etc/sysconfig/harddrake2/ui.conf";
-my ($modem_check_box, $printer_check_box, $current_device, $current_configurator);
+my ($current_device, $current_configurator);
#-PO Translators, please keep all "/" charaters !!!
@@ -194,7 +194,7 @@ $text->set_wrap_mode('word');
$frame->set_size_request(300, 450) unless $::isEmbedded;
# $tree->set_column_auto_resize(0, 1);
my (@data, @configurators);
-$tree->append_column(my $pixcolumn = Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererPixbuf->new, 'pixbuf' => 0));
+$tree->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererPixbuf->new, 'pixbuf' => 0));
$tree->append_column(my $textcolumn = Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 1));
$tree->set_headers_visible(0);
$tree->get_selection->signal_connect('changed' => sub {