diff options
author | Francois Pons <fpons@mandriva.com> | 2002-01-08 10:21:15 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-01-08 10:21:15 +0000 |
commit | f761c59dda1d53e5fa88ec706e8afb82b25b1e22 (patch) | |
tree | fae86a7890852dcff3d73899c0503ac5a1ed7e38 /perl-install | |
parent | ba1dda8ab63f323e429807b02d8c6862c5275150 (diff) | |
download | drakx-f761c59dda1d53e5fa88ec706e8afb82b25b1e22.tar drakx-f761c59dda1d53e5fa88ec706e8afb82b25b1e22.tar.gz drakx-f761c59dda1d53e5fa88ec706e8afb82b25b1e22.tar.bz2 drakx-f761c59dda1d53e5fa88ec706e8afb82b25b1e22.tar.xz drakx-f761c59dda1d53e5fa88ec706e8afb82b25b1e22.zip |
removed stupid invocation of _("$_"), is it correct code to change it to $_ only ?
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakautoinst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/standalone/drakautoinst b/perl-install/standalone/drakautoinst index c0d640135..1dc3fc2a3 100755 --- a/perl-install/standalone/drakautoinst +++ b/perl-install/standalone/drakautoinst @@ -157,7 +157,7 @@ if (!$::isEmbedded && $in->isa('interactive_gtk')) { push @box_to_hide, $box; $box->{vis} = 0; my @button_to_hide; - 0, gtksignal_connect(new Gtk::Button(_("$_")), clicked => sub { + 0, gtksignal_connect(new Gtk::Button($_), clicked => sub { if($box->{vis}) { $box->hide(); $box->{vis} = 0; $notebook->set_page(0); } else { $_->hide, $_->{vis}=0 foreach @box_to_hide; @@ -359,6 +359,9 @@ sub control_buttons { #------------------------------------------------- #- $Log$ +#- Revision 1.15 2002/01/08 10:21:15 fpons +#- removed stupid invocation of _("$_"), is it correct code to change it to $_ only ? +#- #- Revision 1.14 2001/11/05 16:07:21 damien #- typo #- |