Changeset 2192
- Timestamp:
- 12/23/08 19:52:50 (3 years ago)
- Location:
- trunk/Padre-Plugin-Perl6
- Files:
-
- 2 edited
-
Changes (modified) (1 diff)
-
lib/Padre/Plugin/Perl6.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre-Plugin-Perl6/Changes
r2162 r2192 1 1 Changes 2 3 0.013 Dec 24 2008 4 - Added a menu separator before About menu item in Padre::Plugin::Perl6 5 - Another message typo fix in Padre::Document::Perl6 6 - Show an error message box in the following situations: 7 - exporting a non-Perl6 file 8 - STD.pm parsing error occurs 2 9 3 10 0.012 Dec 22 2008 -
trunk/Padre-Plugin-Perl6/lib/Padre/Plugin/Perl6.pm
r2191 r2192 14 14 use File::Temp; 15 15 16 our $VERSION = '0.01 2';16 our $VERSION = '0.013'; 17 17 18 18 use URI::file; … … 84 84 } 85 85 if($doc->get_mimetype ne q{application/x-perl6}) { 86 Wx::MessageBox(87 'Not a Perl 6 file',88 'Export cancelled',89 Wx::wxOK,90 Padre->ide->wx->main_window91 );86 Wx::MessageBox( 87 'Not a Perl 6 file', 88 'Export cancelled', 89 Wx::wxOK, 90 Padre->ide->wx->main_window 91 ); 92 92 return; 93 93 } … … 113 113 114 114 if($EVAL_ERROR) { 115 Wx::MessageBox(116 qq{STD.pm Parsing Error:\n$EVAL_ERROR},117 'Export cancelled',118 Wx::wxOK,119 Padre->ide->wx->main_window120 );115 Wx::MessageBox( 116 qq{STD.pm Parsing Error:\n$EVAL_ERROR}, 117 'Export cancelled', 118 Wx::wxOK, 119 Padre->ide->wx->main_window 120 ); 121 121 say "\nSTD.pm Parsing error\n" . $EVAL_ERROR; 122 122 return;
Note: See TracChangeset
for help on using the changeset viewer.
