X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/b6fd15a8dc44f9b09d5a2bce766cda14b87c6e13..343ccc1ccca150c9bd4e9b59d8bde73297da3aba:/SL/Layout/V3.pm diff --git a/SL/Layout/V3.pm b/SL/Layout/V3.pm index 78b498e97..ab50ef1ae 100644 --- a/SL/Layout/V3.pm +++ b/SL/Layout/V3.pm @@ -6,16 +6,16 @@ use SL::Layout::Css; use URI; -sub new { - my ($class, @slurp) = @_; - - my $self = $class->SUPER::new(@slurp); - - $self->add_sub_layouts([ - SL::Layout::None->new, - ]); +sub init_sub_layouts { + [ SL::Layout::None->new ] +} - $self; +sub use_stylesheet { + my $self = shift; + qw( + frame_header/header.css + ), + $self->SUPER::use_stylesheet(@_); } sub pre_content {