diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-19 12:02:33 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-19 12:02:33 +0000 |
commit | 5d315bac610e4b1745572f65b57a77b260643734 (patch) | |
tree | 15511068be782d46e37e34fed4b5af4b5802756b /mgaapplet | |
parent | 18f01bbb2923176cc42e1748c319dc3b83d8999b (diff) | |
download | mgaonline-5d315bac610e4b1745572f65b57a77b260643734.tar mgaonline-5d315bac610e4b1745572f65b57a77b260643734.tar.gz mgaonline-5d315bac610e4b1745572f65b57a77b260643734.tar.bz2 mgaonline-5d315bac610e4b1745572f65b57a77b260643734.tar.xz mgaonline-5d315bac610e4b1745572f65b57a77b260643734.zip |
(no_more_supported_choice) small perl_checker cleanup
Diffstat (limited to 'mgaapplet')
-rwxr-xr-x | mgaapplet | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -535,7 +535,7 @@ sub no_more_supported_choice() { # FIXME: just tell radio buttons' children to wrap instead: local $mgaapplet_gui::width = 580; my $w = new_portable_dialog(N("Your distribution is no longer supported")); - my ($b1, $b2, $b3); + my ($b1, $b2); my $choice = $extended_maintenance_url ? 'extended' : ($no_more_supported ne 'none' ? 'upgrade' : undef); my @widgets = ( @@ -568,7 +568,7 @@ sub no_more_supported_choice() { ]), gtknew('HSeparator'), ) : ()), - $b3 = gtknew('RadioButton', text => N("Do not ask me next time"), + gtknew('RadioButton', text => N("Do not ask me next time"), toggled => sub { $choice = 'nothing' if $_[0]->get_active; $warn_me = $_[0]->get_active }, |