diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-05-24 13:15:38 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-05-24 13:15:38 +0000 |
commit | c98358f79ce295fc4ee0c8274d8f9653226c5bf7 (patch) | |
tree | 9092c14d83c76068391c8856ab16f3f04dab4cea | |
parent | 762dee42a6cbe4a3e803d402ccadc8050897752e (diff) | |
download | drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar.gz drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar.bz2 drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar.xz drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.zip |
(mk_frame) minor cleanup
-rwxr-xr-x | perl-install/standalone/draksplash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index 703896be4..6cf84790f 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -390,7 +390,7 @@ sub mk_frame { if ($ref->{widget}{combo}{$1}) { @popdown = @{$ref->{widget}{combo}{$1}}; my $w = $ref->{widgets}{combo}{$1} = $ref->{widget}{extras}{$1}{noneditable} ? Gtk2::ComboBox->new_text : Gtk2::Combo->new; - $ref->{widgets}{combo}{$1}->set_popdown_strings(@popdown); + $w->set_popdown_strings(@popdown); $w->set_active(0) if $w->isa('Gtk2::ComboBox'); push @widgets, $w; } |