~ubuntu-branches/ubuntu/karmic/padre/karmic

« back to all changes in this revision

Viewing changes to lib/Padre/Wx/ToolBar.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:
8
8
use Padre::Wx::Editor ();
9
9
use Padre::Wx::Icon   ();
10
10
 
11
 
our $VERSION = '0.33';
 
11
our $VERSION = '0.34';
12
12
use base 'Wx::ToolBar';
13
13
 
14
14
sub new {
16
16
        my $main  = shift;
17
17
 
18
18
        # Prepare the style
19
 
        my $style = Wx::wxTB_HORIZONTAL | Wx::wxTB_FLAT | Wx::wxTB_NO_TOOLTIPS | Wx::wxTB_NODIVIDER | Wx::wxBORDER_NONE;
 
19
        my $style = Wx::wxTB_HORIZONTAL | Wx::wxTB_FLAT | Wx::wxTB_NODIVIDER | Wx::wxBORDER_NONE;
20
20
        unless ( $main->config->main_lockinterface ) {
21
21
                $style = $style | Wx::wxTB_DOCKABLE;
22
22
        }