Commit 1cb1e88e authored by Wayne Stambaugh's avatar Wayne Stambaugh

Fix wxWidgets 2.8 build error.

parent 375310f2
...@@ -299,9 +299,10 @@ this file again." ) ); ...@@ -299,9 +299,10 @@ this file again." ) );
} }
} }
catch( IO_ERROR ioe ) catch( IO_ERROR ioe )
{wxMessageBox("catch"); {
wxString msg = wxString::Format( _( "Error loading board.\n%s" ), wxMessageBox( _( "catch" ) );
ioe.errorText.GetData() ); wxString msg = wxString::Format( _( "Error loading board.\n%s" ),
ioe.errorText.GetData() );
wxMessageBox( msg, _( "Open Board File" ), wxOK | wxICON_ERROR ); wxMessageBox( msg, _( "Open Board File" ), wxOK | wxICON_ERROR );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment