From 1137154e84305c12a461ad981b35046ab9f930a7 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Fri, 28 Feb 2003 15:36:10 +0000 Subject: perl checko says we need to use parentheses with ref --- perl-install/ugtk2.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 4764841c4..3a0d3569f 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -320,7 +320,7 @@ sub create_box_with_title { } $o->{box_size} = n_line_size($nbline, 'text', $box); #- hugly hack because GtkLabel doesn't wrap when using languages that don't contain spaces - if (@_ <= 2 && ($nbline > 4 || ($nbline > 1 && ref $::o && member($::o->{locale}{lang}, qw(ja))))) { + if (@_ <= 2 && ($nbline > 4 || ($nbline > 1 && ref($::o) && member($::o->{locale}{lang}, qw(ja))))) { $o->{icon} && !$::isWizard and eval { gtkpack__($box, gtkset_border_width(gtkpack_(Gtk2::HBox->new(0,0), 1, gtkcreate_img($o->{icon})),5)) }; my $wanted = $o->{box_size}; -- cgit v1.2.1