diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-03 13:26:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-03 13:26:27 +0000 |
commit | 3705d92ef4f38978a4e7a00f0e67b815df5ff995 (patch) | |
tree | e2fcf1f771256851b56e8fe30839dde50ae88849 /perl-install | |
parent | 2a13fd838163e4536b55888cc74a6026ddbc21a1 (diff) | |
download | drakx-3705d92ef4f38978a4e7a00f0e67b815df5ff995.tar drakx-3705d92ef4f38978a4e7a00f0e67b815df5ff995.tar.gz drakx-3705d92ef4f38978a4e7a00f0e67b815df5ff995.tar.bz2 drakx-3705d92ef4f38978a4e7a00f0e67b815df5ff995.tar.xz drakx-3705d92ef4f38978a4e7a00f0e67b815df5ff995.zip |
fix typo (for treelist)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive/newt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm index 759c69969..161971b83 100644 --- a/perl-install/interactive/newt.pm +++ b/perl-install/interactive/newt.pm @@ -136,7 +136,7 @@ sub ask_fromW_real { $w = Newt::Component::Button(simplify_string(may_apply($e->{format}, ${$e->{val}}))); } elsif ($e->{type} eq 'treelist') { $e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ]; - my $data_tree = interactive::helper_separator_tree_to_tree($e->{separator}, $e->{formatted_list}, $e->{list}); + my $data_tree = interactive::helper_separator_tree_to_tree($e->{separator}, $e->{list}, $e->{formatted_list}); my $count; $count = sub { my ($t) = @_; |