diff options
Diffstat (limited to 'mdkapplet')
-rwxr-xr-x | mdkapplet | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -27,7 +27,6 @@ use lib qw(/usr/lib/libDrakX); use standalone; # for explanations use common; use run_program; -use feature 'state'; BEGIN { unshift @::textdomains, 'mdkonline' } @@ -591,7 +590,7 @@ sub checker_exit { } sub silentCheck() { - state $check_time; + my $check_time if 0; my $new_time = time(); if (!$check_time || $new_time - $check_time > $config{DISTRO_CHECK_DELAY}) { clean_distro_cache(); @@ -762,7 +761,7 @@ sub shouldStart() { sub setState { my ($state) = @_; my $checkme; - state $previous_state; + my $previous_state if 0; my @arr = @{$state{$state}{menu}}; my $tmp = eval { gtkcreate_pixbuf($state{$state}{colour}[0]) }; $icon->set_from_pixbuf($tmp) if $tmp; |