Changeset 455


Ignore:
Timestamp:
10/25/08 06:15:23 (3 years ago)
Author:
szabgab
Message:

some more stand-alone compilation fix

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Padre/Document.pm

    r451 r455  
    4141}; 
    4242 
     43use Padre::Util; 
     44 
    4345our $VERSION = '0.12'; 
    4446 
     
    4648 
    4749our %mode = ( 
    48     WIN  => Wx::wxSTC_EOL_CRLF, 
    49     MAC  => Wx::wxSTC_EOL_CR, 
    50     UNIX => Wx::wxSTC_EOL_LF, 
     50    WIN  => wxSTC_EOL_CRLF, 
     51    MAC  => wxSTC_EOL_CR, 
     52    UNIX => wxSTC_EOL_LF, 
    5153); 
    5254 
  • trunk/lib/Padre/Wx/FindDialog.pm

    r433 r455  
    77# Find and Replace widget of Padre 
    88 
    9 use Wx        (); 
     9use Wx        qw( wxOK wxID_FIND wxID_CANCEL ); 
    1010use Wx::Event qw{ EVT_BUTTON EVT_CHECKBOX }; 
    1111 
  • trunk/lib/Padre/Wx/Menu/Help.pm

    r433 r455  
    55use warnings; 
    66use Wx (); 
     7 
     8use Padre::Util; 
    79 
    810our $VERSION = '0.12'; 
  • trunk/t/00-compile.t

    r452 r455  
    66Test::More->builder->BAIL_OUT( 
    77"Test::Compile 1.00 required for testing compilation") if $@; 
    8 all_pm_files_ok(); 
     8all_pl_files_ok(all_pm_files()); 
Note: See TracChangeset for help on using the changeset viewer.