Changeset 5417


Ignore:
Timestamp:
06/20/09 09:48:51 (3 years ago)
Author:
azawawi
Message:

[Perl 6] Last resort Quick fix for "Comment Error line" is done

File:
1 edited

Legend:

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

    r5416 r5417  
    303303                Wx::Event::EVT_MENU( 
    304304                    $main,  
    305                     $menu->Append( -1, Wx::gettext("Comment current error") ), 
     305                    $menu->Append( -1, Wx::gettext("Comment error line") ), 
    306306                    sub { 
    307                         #XXX-implement comment current error 
     307                        #comment current error 
     308                        my $line_start = $editor->PositionFromLine( $current_line_no ); 
     309                        $editor->InsertText($line_start, "#"); 
    308310                    }, 
    309311                ); 
Note: See TracChangeset for help on using the changeset viewer.