diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-01-27 15:49:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-01-27 15:49:26 +0000 |
commit | 96975fd97a41a0d641cc057bb1181ac16d2f4022 (patch) | |
tree | 008346a2dcd0864de1d2da31333002697b68a231 | |
parent | 00b01dc313a2e1ae76c657152b1fccc12fcf2d26 (diff) | |
download | control-center-96975fd97a41a0d641cc057bb1181ac16d2f4022.tar control-center-96975fd97a41a0d641cc057bb1181ac16d2f4022.tar.gz control-center-96975fd97a41a0d641cc057bb1181ac16d2f4022.tar.bz2 control-center-96975fd97a41a0d641cc057bb1181ac16d2f4022.tar.xz control-center-96975fd97a41a0d641cc057bb1181ac16d2f4022.zip |
perl_checker cleanup
-rwxr-xr-x | control-center | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/control-center b/control-center index c79f7c20..47ffa2fa 100755 --- a/control-center +++ b/control-center @@ -860,7 +860,7 @@ sub build_list() { load_packages2install(); my $i; foreach (@tree) { - my ($text, $icon, $help, $subtrees) = @$_; + my ($text, $_icon, $help, $subtrees) = @$_; my @subtrees = grep { $_->{list} = [ clean_list($_->{list}) ]; !is_empty_array_ref($_->{list}) } @$subtrees; @@ -962,7 +962,6 @@ foreach (@tree) { $string .= "</TABLE>\n"; } - my $text_orig = $text; # b/c we use Pango text markup language, we've to protect '&' caracter: $text =~ s/&/&/g; $page_count++; @@ -985,7 +984,6 @@ foreach (@tree) { }, ); - #add2notebook($banner_notebook, "", Gtk2::Banner->new($icon, $text_orig)); } } |