diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-07-18 03:27:49 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-07-18 03:27:49 +0000 |
commit | d52d4d2add5c6a0250cfa64dd7ca3f19c86c5d6d (patch) | |
tree | 48dd8aa66efd456c01e4cbea948e061f772ecd9e /perl-install/standalone/draknfs | |
parent | 903fe3b7283870ce89302c10f224b26e009489e1 (diff) | |
download | drakx-d52d4d2add5c6a0250cfa64dd7ca3f19c86c5d6d.tar drakx-d52d4d2add5c6a0250cfa64dd7ca3f19c86c5d6d.tar.gz drakx-d52d4d2add5c6a0250cfa64dd7ca3f19c86c5d6d.tar.bz2 drakx-d52d4d2add5c6a0250cfa64dd7ca3f19c86c5d6d.tar.xz drakx-d52d4d2add5c6a0250cfa64dd7ca3f19c86c5d6d.zip |
(help_b) fix displaying help the second time
Diffstat (limited to 'perl-install/standalone/draknfs')
-rw-r--r-- | perl-install/standalone/draknfs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/standalone/draknfs b/perl-install/standalone/draknfs index be5760278..56bae1435 100644 --- a/perl-install/standalone/draknfs +++ b/perl-install/standalone/draknfs @@ -209,7 +209,7 @@ sub help_b { $dialog->set_title(N("Help")); $dialog->set_modal(1); gtkpack_($dialog->vbox, - 1, $help_data, + 1, create_pango_help_box($help_data), 0, gtksignal_connect(Gtk2::Button->new_from_stock('gtk-close'), clicked => sub { $dialog->destroy; } @@ -385,7 +385,7 @@ sub add_modify_entry { my $expender = Gtk2::Expander->new('Advanced options'); $expender->add(gtkpack_(Gtk2::VBox->new, - 0, $label_and_widgets->(N("Synchronous access:"), $lsync, help_b(N_("Help Adcanced options"), create_pango_help_box($help_global))), + 0, $label_and_widgets->(N("Synchronous access:"), $lsync, help_b(N_("Help Adcanced options"), $help_global)), 0, $label_and_widgets->(N("Secured Connection:"), $lsecure, ""), 0, $label_and_widgets->(N("Read-Only share:"), $lr, ""), ), @@ -404,12 +404,12 @@ sub add_modify_entry { ), 0, gtkadd(Gtk2::Frame->new(N("Host access")), gtkpack_(gtkset_border_width(Gtk2::VBox->new, 5), - 0, $label_and_widgets->(N("Access:"), $access, help_b(N_("Hosts Access"), create_pango_help_box($help_access))), + 0, $label_and_widgets->(N("Access:"), $access, help_b(N_("Hosts Access"), $help_access)), ), ), 0, gtkadd(Gtk2::Frame->new(N("User ID Mapping")), gtkpack_(gtkset_border_width(Gtk2::VBox->new, 5), - 0, $label_and_widgets->(N("User ID:"), $luserid, help_b(N_("Help User ID"), create_pango_help_box($help_userid))), + 0, $label_and_widgets->(N("User ID:"), $luserid, help_b(N_("Help User ID"), $help_userid)), 0, $label_and_widgets->(N("Anonymous user ID:"), $anonuid, ""), 0, $label_and_widgets->(N("Anonymous Group ID:"), $anongid, ""), ), @@ -418,7 +418,7 @@ sub add_modify_entry { gtkpack_(gtkset_border_width(Gtk2::VBox->new, 5), # 0, $advanced, 0, $expender, -# 0, $label_and_widgets->(N("Synchronous access:"), $lsync, help_b(N_("Help Adcanced options"), create_pango_help_box($help_global))), +# 0, $label_and_widgets->(N("Synchronous access:"), $lsync, help_b(N_("Help Adcanced options"), $help_global)), # 0, $label_and_widgets->(N("Secured Connection:"), $lsecure, ""), # 0, $label_and_widgets->(N("Read-Only share:"), $lr, ""), # 0, $label_and_widgets->(N("Custom options:"), $options, ""), |