Ignore:
Timestamp:
02/19/10 20:10:02 (2 years ago)
Author:
waxhead
Message:

Changes for blame

File:
1 edited

Legend:

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

    r10676 r10841  
    245245        $file->blame(); 
    246246        $self->{_busyCursor} = undef; 
    247         my $blame = join( "\n", @{ $file->stdout } ); 
     247        #my $blame = join( "\n", @{ $file->stdout } ); 
     248        my @blame = @{ $file->stdout }; 
    248249        require Padre::Plugin::SVN::Wx::SVNDialog; 
    249         my $dialog = Padre::Plugin::SVN::Wx::SVNDialog->new( $main, $filename, $blame, 'Blame' ); 
     250        my $dialog = Padre::Plugin::SVN::Wx::SVNDialog->new( $main, $filename, \@blame, 'Blame' ); 
    250251        $dialog->Show(1); 
    251252        return 1; 
Note: See TracChangeset for help on using the changeset viewer.