Changeset 8589


Ignore:
Timestamp:
10/03/09 11:59:49 (2 years ago)
Author:
Sewi
Message:

Perl tidy

Location:
trunk/Padre/lib/Padre
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Document/Perl.pm

    r8585 r8589  
    243243    if ( Padre->ide->config->editor_beginner ) { 
    244244        require Padre::Document::Perl::Beginner; 
    245         my $b = Padre::Document::Perl::Beginner->new( 
    246         document => $self 
    247         ); 
     245        my $b = Padre::Document::Perl::Beginner->new( document => $self ); 
    248246        if ( $b->check( $self->text_get ) ) { 
    249247            return 1; 
  • trunk/Padre/lib/Padre/Wx/Main.pm

    r8586 r8589  
    17961796            $self->run_command($cmd); 
    17971797        } else { 
    1798                 my $styles = Wx::wxCENTRE | Wx::wxICON_HAND|Wx::wxYES_NO ; 
    1799                 my $ret = Wx::MessageBox( 
    1800                 $document->errstr."\n". 
    1801                 Wx::gettext('Do you want to continue?'), 
     1798            my $styles = Wx::wxCENTRE | Wx::wxICON_HAND | Wx::wxYES_NO; 
     1799            my $ret    = Wx::MessageBox( 
     1800                $document->errstr . "\n" . Wx::gettext('Do you want to continue?'), 
    18021801                Wx::gettext("Warning"), 
    18031802                $styles, 
     
    18071806                $self->run_command($cmd); 
    18081807            } 
    1809             } 
     1808        } 
    18101809    } 
    18111810    return; 
Note: See TracChangeset for help on using the changeset viewer.