diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-20 19:52:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-20 19:52:56 +0000 |
commit | 73b574b1d602f36e342c9cb64b07f7b657e757a7 (patch) | |
tree | 365041aaeba1381df10088cbe33ab1e4dae0173f /bin | |
parent | 2ab8f4ef40949366d97f4799e8fe2016fa9d4ed6 (diff) | |
download | drakx-net-73b574b1d602f36e342c9cb64b07f7b657e757a7.tar drakx-net-73b574b1d602f36e342c9cb64b07f7b657e757a7.tar.gz drakx-net-73b574b1d602f36e342c9cb64b07f7b657e757a7.tar.bz2 drakx-net-73b574b1d602f36e342c9cb64b07f7b657e757a7.tar.xz drakx-net-73b574b1d602f36e342c9cb64b07f7b657e757a7.zip |
(show_file_dialog) add a FIXME issue about an undeclared variable
undeclared variable introduced by eugeni in r253962 on Mar 12 2009:
"Updated draknfs to use FileChooser for directory selection (#44562)"
draknfs doesn't even start in strict mode
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/draknfs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/draknfs b/bin/draknfs index 3a0cf31..fd4d406 100755 --- a/bin/draknfs +++ b/bin/draknfs @@ -107,6 +107,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; |