summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/draksplash
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-05-24 13:15:38 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-05-24 13:15:38 +0000
commitc98358f79ce295fc4ee0c8274d8f9653226c5bf7 (patch)
tree9092c14d83c76068391c8856ab16f3f04dab4cea /perl-install/standalone/draksplash
parent762dee42a6cbe4a3e803d402ccadc8050897752e (diff)
downloaddrakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar
drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar.gz
drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar.bz2
drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.tar.xz
drakx-c98358f79ce295fc4ee0c8274d8f9653226c5bf7.zip
(mk_frame) minor cleanup
Diffstat (limited to 'perl-install/standalone/draksplash')
-rwxr-xr-xperl-install/standalone/draksplash2
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;
}