aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-06-05 22:46:25 +0200
committerAngelo Naselli <anaselli@linux.it>2014-06-05 22:46:25 +0200
commit95e2400c6df4301ea464d55f73e85d34b58f84c6 (patch)
tree51718bca9dc5f22e96ea2b0d82f5a405b16dbe6a /lib
parent2faf8529f306490b6cdc3b6a10f3e10c29fab154 (diff)
downloadcolin-keep-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar
colin-keep-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar.gz
colin-keep-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar.bz2
colin-keep-95e2400c6df4301ea464d55f73e85d34b58f84c6.tar.xz
colin-keep-95e2400c6df4301ea464d55f73e85d34b58f84c6.zip
inclded all Shared::Service atm for apanel
Diffstat (limited to 'lib')
-rw-r--r--lib/AdminPanel/Module/LogViewer.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AdminPanel/Module/LogViewer.pm b/lib/AdminPanel/Module/LogViewer.pm
index 60a0e30..95b2872 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() );
}