Changeset 2173


Ignore:
Timestamp:
12/23/08 08:03:03 (3 years ago)
Author:
szabgab
Message:

fix one encoding / display bug thanks to Sean Healy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Output.pm

    r1961 r2173  
    3535 
    3636    return $self; 
     37} 
     38 
     39# from Sean Healy on wxPerl mailing list 
     40use Encode; 
     41sub AppendText { 
     42    my ($self, $text) = @_; 
     43    my $string = decode("utf8", $text); 
     44    $self->SUPER::AppendText($string); 
    3745} 
    3846 
Note: See TracChangeset for help on using the changeset viewer.