~ubuntu-branches/ubuntu/oneiric/padre/oneiric

« back to all changes in this revision

Viewing changes to lib/Padre/Wx/Bottom.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2009-04-28 16:21:53 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090428162153-9p3ygfznr9xt08sn
Tags: 0.34-1
* New upstream release

* bump liborlite-perl (build-)dependency to 1.20
* bump liborlite-migrate-perl (build-)dependency to 0.03
* refresh patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
use warnings;
7
7
use Padre::Wx ();
8
8
 
9
 
our $VERSION = '0.33';
 
9
our $VERSION = '0.34';
10
10
use base 'Wx::AuiNotebook';
11
11
 
12
12
sub new {
107
107
 
108
108
sub relocale {
109
109
        my $self = shift;
110
 
        foreach my $i (0..$self->GetPageCount-1) {
 
110
        foreach my $i ( 0 .. $self->GetPageCount - 1 ) {
111
111
                $self->SetPageText( $i, $self->GetPage($i)->gettext_label );
112
112
        }
113
113
}