diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-27 19:12:31 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-27 19:12:31 +0000 |
commit | a6ddf60c9562929a7d9da2d972dc5395f075ebfc (patch) | |
tree | a36507cc120b7869ddde98529a05181a306983e6 /perl-install/interactive/gtk.pm | |
parent | 9c8d40aff68d960f121333cf051c6150e4db63b2 (diff) | |
download | drakx-a6ddf60c9562929a7d9da2d972dc5395f075ebfc.tar drakx-a6ddf60c9562929a7d9da2d972dc5395f075ebfc.tar.gz drakx-a6ddf60c9562929a7d9da2d972dc5395f075ebfc.tar.bz2 drakx-a6ddf60c9562929a7d9da2d972dc5395f075ebfc.tar.xz drakx-a6ddf60c9562929a7d9da2d972dc5395f075ebfc.zip |
(create_widget) perl_checker fix
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 6015891f4..87b28a685 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -403,7 +403,7 @@ sub create_widget { # handle Install_Buttons: if (ref($w) =~ /Gtk2::HBox/) { ($w) = grep { ref($_) =~ /Gtk2::Label/ } $w->get_children; - }; + } # guard against 'advanced' widgets that are now in their own dialog # (instead of in another block child of an expander): return if !$w; |