diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-20 19:52:58 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-20 19:52:58 +0000 |
commit | 9890b1fafd8c98c4c05d9299274ce9818072be14 (patch) | |
tree | 4fe8d58007a436779797473a06c7ccc6947f2120 /bin/draksambashare | |
parent | 73b574b1d602f36e342c9cb64b07f7b657e757a7 (diff) | |
download | drakx-net-9890b1fafd8c98c4c05d9299274ce9818072be14.tar drakx-net-9890b1fafd8c98c4c05d9299274ce9818072be14.tar.gz drakx-net-9890b1fafd8c98c4c05d9299274ce9818072be14.tar.bz2 drakx-net-9890b1fafd8c98c4c05d9299274ce9818072be14.tar.xz drakx-net-9890b1fafd8c98c4c05d9299274ce9818072be14.zip |
(show_file_dialog,configure_samba) add FIXME issues about undeclared variables
undeclared $dlg variable introduced by eugeni in r253961 on Mar 12 2009:
"Updated draksambashare directory selection to use FileChooser (#44564)."
undeclared $o introduced by aginies in r231202 on Oct 26 2007:
"add a wizard to configure a PDC or a standalone Samba server"
draksambashare doesn't even start in strict mode
Diffstat (limited to 'bin/draksambashare')
-rwxr-xr-x | bin/draksambashare | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/draksambashare b/bin/draksambashare index 14d62c9..90d5a0a 100755 --- a/bin/draksambashare +++ b/bin/draksambashare @@ -244,6 +244,7 @@ my $label_and_widgets = sub { sub show_file_dialog { my ($data) = @_; my $file_dlg = gtknew('FileChooserDialog', title => N("Directory selection"), action => 'select_folder', + # FIXME: undeclared variable: modal => 1, transient_for => $dlg); $file_dlg->set_filename($data->get_text); $file_dlg->show; @@ -1050,6 +1051,7 @@ sub configure_samba { my @yesorno = qw(yes no); push @yesorno, ""; my @loglevel = qw(0 1 2 3 4 5 6 7 8 9); my @security_list = qw(share user domain); + # FIXME: undeclared $o variable: my $wiz = wizards->new({ name => N("Samba Wizard"), pages => { |