Changeset 12036


Ignore:
Timestamp:
07/26/10 20:45:57 (19 months ago)
Author:
adamk
Message:

Moved Padre::Wx::ActionQueue? to Padre::Queue to make badcode.t happier

Location:
trunk/Padre/lib
Files:
1 edited
1 moved

Legend:

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

    r11931 r12036  
    2929# Since everything is used OO-style, we will be require'ing 
    3030# everything other than the bare essentials 
    31 use Padre::Constant        (); 
    32 use Padre::Config          (); 
    33 use Padre::DB              (); 
    34 use Padre::Wx::ActionQueue (); 
     31use Padre::Constant (); 
     32use Padre::Config   (); 
     33use Padre::DB       (); 
     34use Padre::Queue    (); 
    3535 
    3636# Generate faster accessors 
     
    159159 
    160160    # Create the action queue 
    161     $self->{actionqueue} = Padre::Wx::ActionQueue->new; 
     161    $self->{actionqueue} = Padre::Queue->new; 
    162162 
    163163    # Startup completed, let go of the database 
  • trunk/Padre/lib/Padre/Queue.pm

    r11931 r12036  
    1 package Padre::Wx::ActionQueue; 
     1package Padre::Queue; 
    22 
    33# Basic scripting for Padre 
     
    77=head1 NAME 
    88 
    9 Padre::Wx::ActionQueue doesn't create any actions itself but it provides a basic 
     9Padre::Queue doesn't create any actions itself but it provides a basic 
    1010scripting option for Padre, the Action Queue. 
    1111 
Note: See TracChangeset for help on using the changeset viewer.