Changeset 9629


Ignore:
Timestamp:
12/12/09 05:15:36 (2 years ago)
Author:
azawawi
Message:

Renamed Java methods (showIt to show) :)

Location:
trunk/Padre/lib/Padre
Files:
4 edited

Legend:

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

    r9469 r9629  
    165165            #Create and show the dialog 
    166166            my $open_resource_dialog = $_[0]->open_resource; 
    167             $open_resource_dialog->showIt; 
     167            $open_resource_dialog->show; 
    168168        }, 
    169169    ); 
  • trunk/Padre/lib/Padre/Wx/Dialog/HelpSearch.pm

    r9510 r9629  
    245245# Focus on it if it shown or restart its state and show it if it is hidden. 
    246246# 
    247 sub showIt { 
     247sub show { 
    248248    my ( $self, $topic ) = @_; 
    249249 
  • trunk/Padre/lib/Padre/Wx/Dialog/OpenResource.pm

    r9469 r9629  
    376376# Focus on it if it shown or restart its state and show it if it is hidden. 
    377377# 
    378 sub showIt { 
     378sub show { 
    379379    my $self = shift; 
    380380 
  • trunk/Padre/lib/Padre/Wx/Main.pm

    r9626 r9629  
    404404        $self->{help_search} = Padre::Wx::Dialog::HelpSearch->new($self); 
    405405    } 
    406     $self->{help_search}->showIt($topic); 
     406    $self->{help_search}->show($topic); 
    407407} 
    408408 
Note: See TracChangeset for help on using the changeset viewer.