Changeset 9583
- Timestamp:
- 12/09/09 19:07:04 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre-Plugin-Catalyst/lib/Padre/Plugin/Catalyst/NewApp.pm
r9531 r9583 47 47 [ 'Wx::DirPickerCtrl', '_directory_', '', _T('Pick parent directory')], 48 48 ], 49 ); 50 require Catalyst; 51 if ($Catalyst::VERSION < 5.80013) { 52 push @layout, 49 53 [ 50 54 [ 'Wx::CheckBox', '_short_', _T('short names'), 0 ], 51 ], 55 ]; 56 } 57 push @layout, 52 58 [ 53 59 [ 'Wx::Button', '_ok_', Wx::wxID_OK ], 54 60 [ 'Wx::Button', '_cancel_', Wx::wxID_CANCEL ], 55 ] ,56 ); 61 ]; 62 57 63 return \@layout; 58 64 }
