Changeset 3323


Ignore:
Timestamp:
03/13/09 20:45:36 (3 years ago)
Author:
garu
Message:

caption_gettext() refactored to caption() with gettext outside to enable right l10n of messages

File:
1 edited

Legend:

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

    r3313 r3323  
    4242} 
    4343 
    44 sub caption_gettext { 
     44sub caption { 
    4545    my $self = shift; 
    4646    $self->{caption}->{$_[0]} = $_[1]; 
    47     $self->GetPane($_[0])->Caption( Wx::gettext($_[1]) ); 
     47    $self->GetPane($_[0])->Caption( $_[1] ); 
    4848    return 1; 
    4949} 
Note: See TracChangeset for help on using the changeset viewer.