summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-12 14:47:56 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-12 14:47:56 +0000
commit44ad39864c7ff77921cf18a8e22d0e1bee5ae2b9 (patch)
treecdcd8b2987ef877da973269ae3d66751a7e73a55 /perl-install/interactive
parentd41c3387fb7ff4c9d75e616fa1bf0dadf42879cf (diff)
downloaddrakx-44ad39864c7ff77921cf18a8e22d0e1bee5ae2b9.tar
drakx-44ad39864c7ff77921cf18a8e22d0e1bee5ae2b9.tar.gz
drakx-44ad39864c7ff77921cf18a8e22d0e1bee5ae2b9.tar.bz2
drakx-44ad39864c7ff77921cf18a8e22d0e1bee5ae2b9.tar.xz
drakx-44ad39864c7ff77921cf18a8e22d0e1bee5ae2b9.zip
allow {interactive_help} per dialog boxes instead of global
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index cc065ec01..be7d634c5 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -637,7 +637,7 @@ sub ask_fromW {
0, Gtk2::HSeparator->new,
1, $create_widgets->($advanced_total_size, @widgets_advanced));
- my $buttons_pack = ($common->{ok} || !exists $common->{ok}) && $mainw->create_okcancel($common->{ok}, $common->{cancel}, '', if_($o->{interactive_help}, [ N("Help"), $o->{interactive_help}, 1 ]), if_(@$l2, $advanced_button));
+ my $buttons_pack = ($common->{ok} || !exists $common->{ok}) && $mainw->create_okcancel($common->{ok}, $common->{cancel}, '', if_($common->{interactive_help}, [ N("Help"), $common->{interactive_help}, 1 ]), if_(@$l2, $advanced_button));
$pack->pack_start($always_pack, 1, 1, 0); $always_pack->show;
$pack->pack_start($advanced_pack, 1, 1, 0);