Changeset 454


Ignore:
Timestamp:
10/25/08 06:09:51 (3 years ago)
Author:
adamk
Message:

Might as well do wxID_CANCEL as well

File:
1 edited

Legend:

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

    r451 r454  
    77# Module::Start widget of Padre 
    88 
    9 use Wx           qw(wxOK wxID_OK wxVERTICAL wxHORIZONTAL wxEXPAND); 
     9use Wx           qw( wxOK wxID_OK wxID_CANCEL wxVERTICAL wxHORIZONTAL wxEXPAND ); 
    1010use Wx::Event    qw( EVT_BUTTON EVT_CHECKBOX ); 
    1111use Data::Dumper qw(Dumper); 
     
    1717    my $main   = shift; 
    1818    my $config = Padre->ide->config; 
    19  
    2019    __PACKAGE__->dialog( $main, $config, { } ); 
    2120} 
     
    7574        ], 
    7675        [ 
    77             [ 'Wx::Button',     '_ok_',           Wx::wxID_OK], 
    78             [ 'Wx::Button',     '_cancel_',       Wx::wxID_CANCEL], 
     76            [ 'Wx::Button',     '_ok_',           Wx::wxID_OK     ], 
     77            [ 'Wx::Button',     '_cancel_',       Wx::wxID_CANCEL ], 
    7978        ] 
    8079    ); 
Note: See TracChangeset for help on using the changeset viewer.