Changeset 5411


Ignore:
Timestamp:
06/20/09 05:56:22 (3 years ago)
Author:
azawawi
Message:

[Perl 6] Quick fix for 'Use . instead of -> for method call'

File:
1 edited

Legend:

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

    r5410 r5411  
    252252                $comment_error_action = 1; 
    253253             
     254            } elsif($issue_msg =~ /^Obsolete use of -> to call a method/i) { 
     255 
     256                Wx::Event::EVT_MENU( 
     257                    $main,  
     258                    $menu->Append( -1, Wx::gettext("Use . instead of -> for method call") ), 
     259                    sub {  
     260                        #XXX-implement Use . instead of -> for method call 
     261                    }, 
     262                ); 
     263                $comment_error_action = 1; 
     264             
    254265            } 
    255266             
Note: See TracChangeset for help on using the changeset viewer.