~ubuntu-branches/ubuntu/saucy/padre/saucy-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2012-01-04 12:04:20 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20120104120420-i5oybqwf91m1d3il
Tags: 0.92.ds1-1
[ gregor herrmann ]
* Remove debian/source/local-options; abort-on-upstream-changes
  and unapply-patches are default in dpkg-source since 1.16.1.
* Swap order of alternative (build) dependencies after the perl
  5.14 transition.

[ Dominique Dumont ]
* Imported Upstream version 0.92.ds1
* removed fix-spelling patch (applied upstream)
* lintian-override: use wildcard to avoid listing a gazillion files
* updated size of some 'not-real-man-page' entries
* rules: remove dekstop cruft (replaced by a file provided in debian
  directory)
* control: removed Breaks statement. Add /me to uploaders. Updated
  dependencies
* rules: make sure that non-DFSG file (i.e. the cute butterfly, sigh)
  is not distributed

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
use Padre::Wx ();
10
10
use Padre::Logger;
11
11
 
12
 
our $VERSION = '0.90';
 
12
our $VERSION = '0.92';
13
13
 
14
14
# Due to an overly simplistic implementation at the C level,
15
15
# Wx::AuiManager is only a SCALAR reference and cannot be
35
35
        # Do NOT use hints other than Rectangle on Linux/GTK
36
36
        # or the app will crash.
37
37
        my $flags = $self->GetFlags;
38
 
        $flags &= ~Wx::wxAUI_MGR_TRANSPARENT_HINT;
39
 
        $flags &= ~Wx::wxAUI_MGR_VENETIAN_BLINDS_HINT;
40
 
        $self->SetFlags( $flags ^ Wx::wxAUI_MGR_RECTANGLE_HINT );
 
38
        $flags &= ~Wx::AUI_MGR_TRANSPARENT_HINT;
 
39
        $flags &= ~Wx::AUI_MGR_VENETIAN_BLINDS_HINT;
 
40
        $self->SetFlags( $flags ^ Wx::AUI_MGR_RECTANGLE_HINT );
41
41
 
42
42
        return $self;
43
43
}