Split IO_ERROR out of richio.* and store Problem() and Where() separately

This commit is contained in:
Dick Hollenbeck
2016-09-20 11:56:18 -04:00
committed by Wayne Stambaugh
parent 9761c881e2
commit 9ad49dc2d1
47 changed files with 394 additions and 362 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ void DIALOG_PLOT_SCHEMATIC::createSVGFile( bool aPrintAll, bool aPrintFrameRef )
catch( const IO_ERROR& e )
{
// Cannot plot SVG file
msg.Printf( wxT( "SVG Plotter exception: %s" ), GetChars( e.errorText ) );
msg.Printf( wxT( "SVG Plotter exception: %s" ), GetChars( e.What() ) );
reporter.Report( msg, REPORTER::RPT_ERROR );
break;
}