diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-02-11 17:00:19 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-02-11 17:00:19 +0000 |
commit | ab173d9766d527baa7ec14c1240197ca1cb4db97 (patch) | |
tree | a06ddd095f3937c2e2f8e547a36313079955ac7f /perl-install | |
parent | 1201c129b612f6d798cf4428ccbd678093d29e6c (diff) | |
download | drakx-ab173d9766d527baa7ec14c1240197ca1cb4db97.tar drakx-ab173d9766d527baa7ec14c1240197ca1cb4db97.tar.gz drakx-ab173d9766d527baa7ec14c1240197ca1cb4db97.tar.bz2 drakx-ab173d9766d527baa7ec14c1240197ca1cb4db97.tar.xz drakx-ab173d9766d527baa7ec14c1240197ca1cb4db97.zip |
perl_checker cleanups
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakperm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm index 86f968ea5..480782d31 100755 --- a/perl-install/standalone/drakperm +++ b/perl-install/standalone/drakperm @@ -5,6 +5,7 @@ use diagnostics; use lib qw(/usr/lib/libDrakX); use standalone; +use MDK::Common; use common; use mygtk2 qw(gtknew gtkset); use ugtk2 qw(:create :dialogs :helpers :wrappers); @@ -123,7 +124,7 @@ Select permissions to see/edit", $level), alignment => [ 0, 0 ]), [ N("Down"), N("Move selected rule down one level"), sub { move_callback('down') } ], [ N("Add a rule"), N("Add a new rule at the end"), \&add_callback ], [ N("Delete"), N("Delete selected rule"), \&del_callback ], - [ N("Edit"), N("Edit current rule"), \&edit_callback ])]), + [ N("Edit"), N("Edit current rule"), \&edit_callback ]) ]), 0, gtknew('VBox'), ]), 0, create_okcancel({ |