diff options
author | Angelo Naselli <anaselli@linux.it> | 2014-06-05 22:46:25 +0200 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2014-06-05 22:46:25 +0200 |
commit | 95e2400c6df4301ea464d55f73e85d34b58f84c6 (patch) | |
tree | 51718bca9dc5f22e96ea2b0d82f5a405b16dbe6a /lib/AdminPanel | |
parent | 2faf8529f306490b6cdc3b6a10f3e10c29fab154 (diff) | |
download | manatools-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar manatools-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar.gz manatools-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar.bz2 manatools-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar.xz manatools-95e2400c6df4301ea464d55f73e85d34b58f84c6.zip |
inclded all Shared::Service atm for apanel
Diffstat (limited to 'lib/AdminPanel')
-rw-r--r-- | lib/AdminPanel/Module/LogViewer.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AdminPanel/Module/LogViewer.pm b/lib/AdminPanel/Module/LogViewer.pm index 60a0e301..95b28723 100644 --- a/lib/AdminPanel/Module/LogViewer.pm +++ b/lib/AdminPanel/Module/LogViewer.pm @@ -56,7 +56,7 @@ use open OUT => ':utf8'; use AdminPanel::Shared::GUI; use AdminPanel::Shared::Locales; -use AdminPanel::Shared::Services qw (services); +use AdminPanel::Shared::Services;# qw (services); use AdminPanel::Shared::JournalCtl; @@ -80,7 +80,7 @@ has 'loc' => ( ); sub _localeInitialize { - my $self = shift(); + my $self = shift; # TODO fix domain binding for translation $self->loc(AdminPanel::Shared::Locales->new(domain_name => 'libDrakX-standalone') ); @@ -94,7 +94,7 @@ has 'sh_gui' => ( ); sub _SharedUGUIInitialize { - my $self = shift(); + my $self = shift; $self->sh_gui(AdminPanel::Shared::GUI->new() ); } |