summaryrefslogtreecommitdiffstats
path: root/mgaapplet
diff options
context:
space:
mode:
Diffstat (limited to 'mgaapplet')
-rwxr-xr-xmgaapplet5
1 files changed, 3 insertions, 2 deletions
diff --git a/mgaapplet b/mgaapplet
index 8998a7f7..f7e9a65d 100755
--- a/mgaapplet
+++ b/mgaapplet
@@ -27,6 +27,7 @@ use lib qw(/usr/lib/libDrakX);
use standalone; # for explanations
use common;
use run_program;
+use feature 'state';
BEGIN { unshift @::textdomains, 'mgaonline' }
@@ -709,7 +710,7 @@ sub update_backport_media {
}
sub silentCheck() {
- my $check_time if 0;
+ state $check_time;
my $new_time = time();
if (!$check_time || $new_time - $check_time > $config{DISTRO_CHECK_DELAY}) {
clean_distro_cache();
@@ -915,7 +916,7 @@ sub about_dialog() {
sub setState {
my ($state) = @_;
my $checkme;
- my $previous_state if 0;
+ state $previous_state;
my @arr = @{$state{$state}{menu}};
my $tmp = eval { gtkcreate_pixbuf($state{$state}{colour}[0]) };
$icon->set_from_pixbuf($tmp) if $tmp;