diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-21 17:59:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-21 17:59:09 +0000 |
commit | c18552d7a02dfc62ce43160b58db8ad606085cee (patch) | |
tree | f61e497217998ebf66bc727ea95c8416d131144a /perl-install/interactive_newt.pm | |
parent | 00845c290fbfdf0015871323b10b3d90af613fca (diff) | |
download | drakx-c18552d7a02dfc62ce43160b58db8ad606085cee.tar drakx-c18552d7a02dfc62ce43160b58db8ad606085cee.tar.gz drakx-c18552d7a02dfc62ce43160b58db8ad606085cee.tar.bz2 drakx-c18552d7a02dfc62ce43160b58db8ad606085cee.tar.xz drakx-c18552d7a02dfc62ce43160b58db8ad606085cee.zip |
no_comment
Diffstat (limited to 'perl-install/interactive_newt.pm')
-rw-r--r-- | perl-install/interactive_newt.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/interactive_newt.pm b/perl-install/interactive_newt.pm index 6fbc18d3c..3a00a36b0 100644 --- a/perl-install/interactive_newt.pm +++ b/perl-install/interactive_newt.pm @@ -78,7 +78,12 @@ sub ask_from_listW { } } -sub ask_many_from_list_refW($$$$$) { +sub ask_many_from_list_with_help_refW { + my ($o, $title, $messages, $list, $help, $val) = @_; + ask_many_from_list_refW($o, $title, $messages, $list, $val); +} + +sub ask_many_from_list_refW { my ($o, $title, $messages, $list, $val) = @_; my $height = min(int @$list, 18); |