X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/fb005f3fd6f8684441c12d821c8d30a8720dcf16..b6fd15a8dc44f9b09d5a2bce766cda14b87c6e13:/SL/Controller/Layout/Classic.pm diff --git a/SL/Controller/Layout/Classic.pm b/SL/Controller/Layout/Classic.pm deleted file mode 100644 index b7438740c..000000000 --- a/SL/Controller/Layout/Classic.pm +++ /dev/null @@ -1,23 +0,0 @@ -package SL::Controller::Layout::Classic; - -use strict; -use parent qw(SL::Controller::Layout::Base); - -use SL::Controller::Layout::Top; -use SL::Controller::Layout::MenuLeft; - -sub new { - my ($class, @slurp) = @_; - - my $self = $class->SUPER::new(@slurp); - - $self->add_sub_layouts([ - SL::Controller::Layout::Top->new, - SL::Controller::Layout::MenuLeft->new, - SL::Controller::Layout::None->new, - ]); - - $self; -} - -1;