summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakboot
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-04-29 18:38:45 +0000
committerOlivier Blin <oblin@mandriva.org>2005-04-29 18:38:45 +0000
commitf272a0878cd2a10b593a67eb7646b26607f47144 (patch)
tree2a1044652ee6433716aac3765660c3cb3588e88a /perl-install/standalone/drakboot
parent6e3b2f9d904cd2ea388fa461f6dadb27d79a34c7 (diff)
downloaddrakx-f272a0878cd2a10b593a67eb7646b26607f47144.tar
drakx-f272a0878cd2a10b593a67eb7646b26607f47144.tar.gz
drakx-f272a0878cd2a10b593a67eb7646b26607f47144.tar.bz2
drakx-f272a0878cd2a10b593a67eb7646b26607f47144.tar.xz
drakx-f272a0878cd2a10b593a67eb7646b26607f47144.zip
typo/perl_checker fixes
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-xperl-install/standalone/drakboot4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot
index 3b02a714b..12ab176a4 100755
--- a/perl-install/standalone/drakboot
+++ b/perl-install/standalone/drakboot
@@ -112,8 +112,8 @@ sub splash_choice() {
my $theme_combo = gtkset_size_request(Gtk2::ComboBox->new_with_strings([ bootsplash::list_themes($cur_res) ], $theme->{name}), 10, -1);
$theme_combo->entry->signal_connect(changed => sub {
- $theme->{name} = $theme_combo->entry->get_text,
- change_image($boot_pic, $theme->{name}, $cur_res)
+ $theme->{name} = $theme_combo->entry->get_text;
+ change_image($boot_pic, $theme->{name}, $cur_res);
});
my $_thm_button = Gtk2::Button->new(N("Install themes"));