diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:22:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:22:15 +0000 |
commit | 60c5be6245a02d6f09aebd2d257716a578bc90c3 (patch) | |
tree | 9deeba176c0a0e0271bac780541305e799d668e9 /perl-install/ugtk2.pm | |
parent | 07d2e1e1e8da3b23c77c741236312c63485c550b (diff) | |
download | drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar.gz drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar.bz2 drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.tar.xz drakx-60c5be6245a02d6f09aebd2d257716a578bc90c3.zip |
perl_checker compliance
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 3315fb191..abb463491 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -1363,11 +1363,11 @@ sub get_path_str { package Gtk2::TreeView; # likewise gtk-1.2 function sub toggle_expansion { - my ($self, $path, $open_all) = @_; + my ($self, $path, $b_open_all) = @_; if ($self->row_expanded($path)) { $self->collapse_row($path); } else { - $self->expand_row($path, $open_all || 0); + $self->expand_row($path, $b_open_all || 0); } } |