oops, wx2.8 compatibility fixes

This commit is contained in:
Dick Hollenbeck 2014-04-10 16:24:15 -05:00
parent f687f9ef85
commit 359f05ad76
1 changed files with 6 additions and 4 deletions

View File

@ -34,6 +34,7 @@
*/
#include <typeinfo>
#include <macros.h>
#include <fctsys.h>
#include <wx/dynlib.h>
@ -234,17 +235,18 @@ struct APP_SINGLE_TOP : public wxApp
}
catch( const std::exception& e )
{
wxLogError( "Unhandled exception class: %s what: %s",
wxLogError( wxT( "Unhandled exception class: %s what: %s" ),
typeid(e).name(), e.what() );
}
catch( const IO_ERROR& ioe )
{
wxLogError( "Unhandled exception class: %s what: %s",
typeid( ioe ).name(), TO_UTF8( ioe.errorText ) );
wxLogError( wxT( "Unhandled exception class: %s what: %s" ),
GetChars( FROM_UTF8( typeid( ioe ).name() ) ),
GetChars( ioe.errorText ) );
}
catch(...)
{
wxLogError( "Unhandled exception of unknown type" );
wxLogError( wxT( "Unhandled exception of unknown type" ) );
}
return -1;