Commit 359f05ad authored by Dick Hollenbeck's avatar Dick Hollenbeck

oops, wx2.8 compatibility fixes

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