Changeset 12038


Ignore:
Timestamp:
07/26/10 21:07:01 (19 months ago)
Author:
adamk
Message:

Moving back to the previous name

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

Legend:

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

    r12037 r12038  
    3232use Padre::Config   (); 
    3333use Padre::DB       (); 
    34 use Padre::Queue    (); 
    3534 
    3635# Generate faster accessors 
  • trunk/Padre/lib/Padre/Wx/ActionQueue.pm

    r12037 r12038  
    1 package Padre::Queue; 
     1package Padre::Wx::ActionQueue; 
    22 
    33# Basic scripting for Padre 
     
    77=head1 NAME 
    88 
    9 Padre::Queue doesn't create any actions itself but it provides a basic 
     9Padre::Wx::ActionQueue doesn't create any actions itself but it provides a basic 
    1010scripting option for Padre, the Action Queue. 
    1111 
  • trunk/Padre/lib/Padre/Wx/App.pm

    r12037 r12038  
    7575 
    7676    # Create the action queue 
    77     require Padre::Queue; 
    78     $self->{queue} = Padre::Queue->new( $self ); 
     77    require Padre::Wx::ActionQueue; 
     78    $self->{queue} = Padre::Wx::ActionQueue->new( $self ); 
    7979 
    8080    return $self; 
     
    124124=head2 C<queue> 
    125125 
    126 The C<queue> accessor returns the L<Padre::Queue> for the application. 
     126The C<queue> accessor returns the L<Padre::Wx::ActionQueue> for the application. 
    127127 
    128128=cut 
Note: See TracChangeset for help on using the changeset viewer.