diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-08-20 17:12:32 +0200 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-10-20 21:29:55 +0000 |
commit | c770f19beaae801d90ee1c0a5c33fd356940ed7d (patch) | |
tree | d5771cf75938f672d48a01351bbeaa32ad0ca154 /perl-install | |
parent | 6ef595e20d828405f778a6f55f8dcbfbcfc010fb (diff) | |
download | drakx-c770f19beaae801d90ee1c0a5c33fd356940ed7d.tar drakx-c770f19beaae801d90ee1c0a5c33fd356940ed7d.tar.gz drakx-c770f19beaae801d90ee1c0a5c33fd356940ed7d.tar.bz2 drakx-c770f19beaae801d90ee1c0a5c33fd356940ed7d.tar.xz drakx-c770f19beaae801d90ee1c0a5c33fd356940ed7d.zip |
FileSelection no more exists in Gtk3
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/mygtk3.pm | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index ae3c3a7c3..a4e2a25bf 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -1059,17 +1059,6 @@ sub _gtk__AboutDialog { $w; } -sub _gtk__FileSelection { - my ($w, $opts) = @_; - - if (!$w) { - $w = Gtk3::FileSelection->new(delete $opts->{title} || ''); - gtkset($w->ok_button, %{delete $opts->{ok_button}}) if exists $opts->{ok_button}; - gtkset($w->cancel_button, %{delete $opts->{cancel_button}}) if exists $opts->{cancel_button}; - } - $w; -} - sub _gtk__FileChooserDialog { &_gtk_any_Window } sub _gtk__FileChooser { |