Commit 36bdbde6 authored by Dick Hollenbeck's avatar Dick Hollenbeck

oops, wx2.8 compatibility fixes

parent 359f05ad
...@@ -236,7 +236,8 @@ struct APP_SINGLE_TOP : public wxApp ...@@ -236,7 +236,8 @@ struct APP_SINGLE_TOP : public wxApp
catch( const std::exception& e ) catch( const std::exception& e )
{ {
wxLogError( wxT( "Unhandled exception class: %s what: %s" ), wxLogError( wxT( "Unhandled exception class: %s what: %s" ),
typeid(e).name(), e.what() ); GetChars( FROM_UTF8( typeid(e).name() )),
GetChars( FROM_UTF8( e.what() ) ) );;
} }
catch( const IO_ERROR& ioe ) catch( const IO_ERROR& ioe )
{ {
......
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