summaryrefslogtreecommitdiffstats
path: root/perl-install/mygtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-28 21:07:32 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-28 21:07:32 +0000
commitc072369bf4a3d16bb51cd388c4c3ea04cb95b4cc (patch)
tree05a754e9308b2355f13f447d85484759359e2fe6 /perl-install/mygtk2.pm
parent780c58b38e078a7fabb26f9fc88c3f125aa6645f (diff)
downloaddrakx-c072369bf4a3d16bb51cd388c4c3ea04cb95b4cc.tar
drakx-c072369bf4a3d16bb51cd388c4c3ea04cb95b4cc.tar.gz
drakx-c072369bf4a3d16bb51cd388c4c3ea04cb95b4cc.tar.bz2
drakx-c072369bf4a3d16bb51cd388c4c3ea04cb95b4cc.tar.xz
drakx-c072369bf4a3d16bb51cd388c4c3ea04cb95b4cc.zip
show what is common (btw, 'mcc' option should be either renamed or dropped since mcc doesn't use it since a long time)
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r--perl-install/mygtk2.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm
index 219ae080b..96c153d2c 100644
--- a/perl-install/mygtk2.pm
+++ b/perl-install/mygtk2.pm
@@ -1081,11 +1081,11 @@ sub _gtk__Table {
my $j = $::i;
if ($_) {
ref $_ or $_ = Gtk2::WrappedLabel->new($_);
- $j != $#$l && !$w->{mcc} ?
- $w->attach($_, $j, $j + 1, $i, $i + 1,
- 'fill', 'fill', $w->{xpadding}, $w->{ypadding}) :
- $w->attach($_, $j, $j + 1, $i, $i + 1,
- ['expand', 'fill'], ref($_) eq 'Gtk2::ScrolledWindow' || $_->get_data('must_grow') ? ['expand', 'fill'] : [], 0, 0);
+ $w->attach($_, $j, $j + 1, $i, $i + 1,
+ $j != $#$l && !$w->{mcc} ?
+ ('fill', 'fill', $w->{xpadding}, $w->{ypadding}) :
+ (['expand', 'fill'], ref($_) eq 'Gtk2::ScrolledWindow' || $_->get_data('must_grow') ?
+ ['expand', 'fill'] : [], 0, 0));
$_->show;
}
} @$l;