diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/services.pm | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 1bad11c31..c70c03e92 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,7 +2,7 @@ - enable relative links in HTML help - switch from perl-Gtk2-Html2 to perl-Gtk2-WebKit in order to display release notes & help -- use HTML help for package selection & summary step +- use HTML help for package selection, services & summary step Version 11.43 - 16 September 2008 diff --git a/perl-install/services.pm b/perl-install/services.pm index d6135d6c1..f9f0e8727 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -173,7 +173,8 @@ sub ask_ { scalar(values %services)); }, get_info => sub { formatLines(description($_[0])) }, - interactive_help_id => 'configureServices', + interactive_help => sub { + interactive::gtk::display_help($o, { interactive_help_id => 'misc-params' }, $w) }, }) or return $l, $on_services; #- no change on cancel. [ grep { $services{$_} } @$l ]; } |