Fix minor issues about translated strings and coding style. Add comment relative to file function info in X1 gerber file format.

This commit is contained in:
jean-pierre charras
2014-10-31 19:59:37 +01:00
parent db31daffe4
commit 7b5318ff64
10 changed files with 37 additions and 23 deletions
+2 -2
View File
@@ -129,9 +129,9 @@ void DIALOG_PLOT_SCHEMATIC::createPSFile( bool aPlotAll, bool aPlotFrameRef )
m_MessagesBox->AppendText( msg );
}
catch (IO_ERROR& e)
catch( IO_ERROR& e )
{
msg.Printf( _( "PS Plotter Exception : '%s'"), wxString(e.errorText ) );
msg.Printf( wxT( "PS Plotter Exception : '%s'"), GetChars( e.errorText ) );
m_MessagesBox->AppendText( msg );
}