Changeset 7487


Ignore:
Timestamp:
08/23/09 07:10:21 (2 years ago)
Author:
azawawi
Message:

[Perl 6] Perl tidy

Location:
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6.pm

    r7454 r7487  
    4444# 
    4545sub _sharedir { 
    46     return Cwd::realpath(  
    47         File::Spec->join(  
    48             File::Basename::dirname(__FILE__), 'Perl6' , 'share' ) ); 
     46    return Cwd::realpath( File::Spec->join( File::Basename::dirname(__FILE__), 'Perl6', 'share' ) ); 
    4947} 
    5048 
  • trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Perl6QuickFixProvider.pm

    r7485 r7487  
    55use warnings; 
    66 
    7 use Padre::Wx (); 
     7use Padre::Wx                  (); 
    88use Padre::Plugin::Perl6::Util (); 
    9 use Padre::QuickFixProvider (); 
     9use Padre::QuickFixProvider    (); 
    1010 
    1111our $VERSION = '0.57'; 
    12 our @ISA = ('Padre::QuickFixProvider'); 
     12our @ISA     = ('Padre::QuickFixProvider'); 
    1313 
    1414# 
     
    3535    } 
    3636 
    37     my $nl              = Padre::Plugin::Perl6::Util::guess_newline($editor->GetText); 
     37    my $nl              = Padre::Plugin::Perl6::Util::guess_newline( $editor->GetText ); 
    3838    my $current_line_no = $editor->GetCurrentLine; 
    3939 
  • trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6/Util.pm

    r7450 r7487  
    9797 
    9898    require Padre::Util; 
    99     my $doc_new_line_type = Padre::Util::newline_type( $text ); 
     99    my $doc_new_line_type = Padre::Util::newline_type($text); 
    100100    my $new_line; 
    101101    if ( $doc_new_line_type eq "WIN" ) { 
Note: See TracChangeset for help on using the changeset viewer.