Changeset 7499


Ignore:
Timestamp:
08/23/09 23:43:39 (2 years ago)
Author:
szabgab
Message:

perltidy

File:
1 edited

Legend:

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

    r7489 r7499  
    3939                my $line_start = $editor->PositionFromLine($current_line_no); 
    4040                my $line_end   = $editor->GetLineEndPosition($current_line_no); 
    41                 my $line = $editor->GetTextRange($line_start,$line_end); 
     41                my $line       = $editor->GetTextRange( $line_start, $line_end ); 
    4242                $line = qq{use strict;$line\n}; 
    4343                $editor->SetSelection( $line_start, $line_end ); 
    4444                $editor->ReplaceSelection($line); 
    45             } 
     45                } 
    4646        }; 
    4747    } 
     
    5252                my $line_start = $editor->PositionFromLine($current_line_no); 
    5353                my $line_end   = $editor->GetLineEndPosition($current_line_no); 
    54                 my $line = $editor->GetTextRange($line_start,$line_end); 
     54                my $line       = $editor->GetTextRange( $line_start, $line_end ); 
    5555                $line = qq{use warnings;$line\n}; 
    5656                $editor->SetSelection( $line_start, $line_end ); 
    5757                $editor->ReplaceSelection($line); 
    58             } 
     58                } 
    5959        }; 
    6060    } 
Note: See TracChangeset for help on using the changeset viewer.