diff options
Diffstat (limited to 'perl-install/interactive_newt.pm')
-rw-r--r-- | perl-install/interactive_newt.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/interactive_newt.pm b/perl-install/interactive_newt.pm index 09163b07c..8f668c5e0 100644 --- a/perl-install/interactive_newt.pm +++ b/perl-install/interactive_newt.pm @@ -78,8 +78,10 @@ sub ask_from_listW { } } -sub ask_many_from_list_refW { - my ($o, $title, $messages, $list, $val) = @_; +sub ask_many_from_list_with_help_refW { + my ($o, $title, $messages, $lists) = @_; + my $list = map { $_->[0] } @$lists; + my $val = map { $_->[2] } @$lists; my $height = min(int @$list, 18); my $sb = Newt::Component::VerticalScrollbar(-1, -1, $height, 9, 10); |