diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-03 09:05:27 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-03 09:05:27 +0000 |
commit | 91d6b463a601d9030911e221b6fc75bd0d105417 (patch) | |
tree | 44efbab9feab23f4a024e6c78e914ea4f3462c34 /perl-install | |
parent | 0c70a35eec0a4443e74bcffb2c70687ed7cb9eec (diff) | |
download | drakx-91d6b463a601d9030911e221b6fc75bd0d105417.tar drakx-91d6b463a601d9030911e221b6fc75bd0d105417.tar.gz drakx-91d6b463a601d9030911e221b6fc75bd0d105417.tar.bz2 drakx-91d6b463a601d9030911e221b6fc75bd0d105417.tar.xz drakx-91d6b463a601d9030911e221b6fc75bd0d105417.zip |
let simplify
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index c56565a96..2e7d9c40e 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -805,7 +805,7 @@ sub new { sub main { my ($o, $completed, $canceled) = @_; gtkset_mousecursor_normal(); - $::CCPID and common::basename($0) !~ /logdrake/ and kill 'USR2', $::CCPID; + $::CCPID and $0 !~ /logdrake/ and kill 'USR2', $::CCPID; my $timeout = Gtk2->timeout_add(1000, sub { gtkset_mousecursor_normal(); 1 }); my $_b = MDK::Common::Func::before_leaving { Gtk2->timeout_remove($timeout) }; $o->show; |