~ubuntu-branches/ubuntu/raring/padre/raring

« back to all changes in this revision

Viewing changes to lib/Padre/Wx/HtmlWindow.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:
23
23
use 5.008;
24
24
use strict;
25
25
use warnings;
26
 
use Padre::Wx ();
27
 
use Wx::Html  ();
 
26
use Padre::Wx           ();
 
27
use Padre::Wx::Constant ();
 
28
use Wx::Html            ();
28
29
 
29
 
our $VERSION = '0.90';
 
30
our $VERSION = '0.92';
30
31
our @ISA     = 'Wx::HtmlWindow';
31
32
 
 
33
# Now that we have loaded Wx::Html we need to rerun the constant
 
34
# loader to ensure the new style constants are correctly created.
 
35
BEGIN {
 
36
        Padre::Wx::Constant::load();
 
37
}
 
38
 
32
39
 
33
40
 
34
41