diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-11-14 14:43:47 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-11-14 14:43:47 +0000 |
commit | 4282f9970a5cbb64d97c1f020d784efe162b6511 (patch) | |
tree | 46888a59cf0da745129427c0941a680f8094ed34 | |
parent | 5281b41214d67e3b06550bab812367050f3d69c0 (diff) | |
download | control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar.gz control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar.bz2 control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar.xz control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.zip |
perl_checker fixes
-rwxr-xr-x | drakxconf | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -22,21 +22,21 @@ my @l = map { } { des => $_->{des}, cmd => $path }; } ( - { des => N("Display Configuration"), cmd => 'XFdrake'}, - { des => N("KeyBoard Configuration"), cmd => 'keyboarddrake'}, - { des => N("Mouse Configuration"), cmd => 'mousedrake'}, - { des => N("Internet & Network"), cmd => 'drakconnect'}, - { des => N("Printer Configuration"), cmd => 'printerdrake'}, - { des => N("Add new users"), cmd => 'adduserdrake'}, - { des => N("Service Configuration"), cmd => 'drakxservices'}, - { des => N("Firewall"), cmd => 'tinyfirewall'}, - { des => N("Boot Configuration"), cmd => 'drakboot'}, - { des => N("Auto Install"), cmd => 'drakautoinst'}, - { des => N("Connection Sharing"), cmd => 'drakgw'}, - { des => N("Disk Partionning"), cmd => 'diskdrake'} + { des => N("Display Configuration"), cmd => 'XFdrake' }, + { des => N("KeyBoard Configuration"), cmd => 'keyboarddrake' }, + { des => N("Mouse Configuration"), cmd => 'mousedrake' }, + { des => N("Internet & Network"), cmd => 'drakconnect' }, + { des => N("Printer Configuration"), cmd => 'printerdrake' }, + { des => N("Add new users"), cmd => 'adduserdrake' }, + { des => N("Service Configuration"), cmd => 'drakxservices' }, + { des => N("Firewall"), cmd => 'tinyfirewall' }, + { des => N("Boot Configuration"), cmd => 'drakboot' }, + { des => N("Auto Install"), cmd => 'drakautoinst' }, + { des => N("Connection Sharing"), cmd => 'drakgw' }, + { des => N("Disk Partionning"), cmd => 'diskdrake' } ); -my $choice = $in->ask_from_listf(N("Control Center"), N("Choose the tool you want to use"), sub { $_[0]{des} }, \@l ) +my $choice = $in->ask_from_listf(N("Control Center"), N("Choose the tool you want to use"), sub { $_[0]{des} }, \@l) or $in->exit(1); $in->end; |