summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk3.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-01-30 07:51:28 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-02-07 21:36:45 +0100
commitb53ffdf8b2c1fb86135f67ecb3fb829efd8a754b (patch)
treed9140917e37ff3b91810ccb341fec76a5b08af7e /perl-install/ugtk3.pm
parente140a5374ee097029484b075b7120cef8f5e4aac (diff)
downloaddrakx-b53ffdf8b2c1fb86135f67ecb3fb829efd8a754b.tar
drakx-b53ffdf8b2c1fb86135f67ecb3fb829efd8a754b.tar.gz
drakx-b53ffdf8b2c1fb86135f67ecb3fb829efd8a754b.tar.bz2
drakx-b53ffdf8b2c1fb86135f67ecb3fb829efd8a754b.tar.xz
drakx-b53ffdf8b2c1fb86135f67ecb3fb829efd8a754b.zip
rename a variable (silent a perl_checker warning)
Diffstat (limited to 'perl-install/ugtk3.pm')
-rw-r--r--perl-install/ugtk3.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index d8149e7a3..04d1697ce 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -1374,8 +1374,8 @@ sub new {
my ($_class, $icon, $text, $o_options) = @_;
mygtk3::import_style_ressources();
- my $icon = eval { ugtk3::gtkcreate_pixbuf($icon) };
- $icon ||= ugtk3::gtkcreate_pixbuf(ugtk3::wm_icon());
+ my $icon_w = eval { ugtk3::gtkcreate_pixbuf($icon) };
+ $icon_w ||= ugtk3::gtkcreate_pixbuf(ugtk3::wm_icon());
my $is_rtl = mygtk3::text_direction_rtl();
my $blue_part = eval { gtknew('Pixbuf', file => 'banner-blue-part', flip => $is_rtl) };
@@ -1387,7 +1387,7 @@ sub new {
my $label = gtknew('Label', text => $text, padding => [ 100, 0 ], alignment => [ 0, 0.5 ]); # for update_text()
my $w = gtknew('Overlay', height => $d_height, widget_name => 'Banner', main_child => $label, children => [
gtknew('Overlay', main_child => $img, children => [
- my $icon_img = gtknew('Image', pixbuf => $icon, alignment => [ 0, 0 ]),
+ my $icon_img = gtknew('Image', pixbuf => $icon_w, alignment => [ 0, 0 ]),
])
]);
@@ -1397,7 +1397,7 @@ sub new {
} else {
$icon_img->set_margin_left(12);
}
- $icon_img->set_margin_top(($blue_part->get_height-$icon->get_height)/2-4);
+ $icon_img->set_margin_top(($blue_part->get_height-$icon_w->get_height)/2-4);
$w->{label} = $label;
$w->set_size_request(-1, $d_height);