summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/ugtk.pm')
-rw-r--r--perl-install/ugtk.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/ugtk.pm b/perl-install/ugtk.pm
index 49a0a7ab6..2e100ede9 100644
--- a/perl-install/ugtk.pm
+++ b/perl-install/ugtk.pm
@@ -410,7 +410,7 @@ sub create_treeitem {
my $w = new Gtk::TreeItem($name);
$w->signal_connect(key_press_event => sub {
my (undef, $e) = @_;
- local $_ = chr ($e->{keyval});
+ local $_ = chr $e->{keyval};
if ($e->{keyval} > 0x100) {
my $n;
@@ -736,7 +736,7 @@ sub gtkpowerpack {
ref($_[0]) eq 'HASH' || ref($_[0]) eq 'ARRAY' and $RefAttrs = shift;
foreach ("expand", "fill", "padding", "pack_end") {
if ($RefDefaultAttrs->{$_} eq 'arg') {
- ref ($_[0]) and die "error in packing definition\n";
+ ref $_[0] and die "error in packing definition\n";
$attr{$_} = shift;
ref($RefAttrs) eq 'ARRAY' and shift @$RefAttrs;
} elsif (ref($RefAttrs) eq 'HASH' && defined($RefAttrs->{$_})) {