~ubuntu-branches/ubuntu/maverick/padre/maverick

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2010-05-13 08:24:37 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100513082437-rtvy3fw2efdd60h9
Tags: 0.61.ds1-1
* new upstream bugfix release

* add libpod2-base-perl (>= 0.043) to dependencies
* update translator list in d/copyright
* update debian/not-real-manual.list
* rules: upstream no longer installs .po files next to the .mo files; stop
  removing them

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
use Padre::Wx       ();
9
9
use Padre::Locale   ();
10
10
 
11
 
our $VERSION = '0.60';
 
11
our $VERSION = '0.61';
12
12
our @ISA     = 'Wx::TreeCtrl';
13
13
 
14
14
use Class::XSAccessor {
67
67
}
68
68
 
69
69
sub enable {
70
 
        my $self     = shift;
 
70
        my $self = shift;
 
71
 
71
72
        my $main     = $self->main;
72
73
        my $bottom   = $self->bottom;
73
74
        my $position = $bottom->GetPageCount;
79
80
}
80
81
 
81
82
sub disable {
82
 
        my $self     = shift;
 
83
        my $self = shift;
 
84
 
83
85
        my $main     = $self->main;
84
86
        my $bottom   = $self->bottom;
85
87
        my $position = $bottom->GetPageIndex($self);
90
92
}
91
93
 
92
94
sub gettext_label {
93
 
        return Wx::gettext("Error List");
 
95
        return Wx::gettext('Errors');
94
96
}
95
97
 
96
98
sub populate {