Fix segmentation fault with the new libstdc++ ABI.

Local variable goes out of scope and everything goes boom.
This commit is contained in:
Miguel A. Colón Vélez 2015-09-12 17:35:45 -04:00
parent 53680d538d
commit f1cb2cfa35
1 changed files with 2 additions and 4 deletions

View File

@ -29,8 +29,7 @@ const wxChar* __fastcall pxExpandMsg( const wxChar* englishContent )
#if _WIN32 || wxMAJOR_VERSION < 3
return wxGetTranslation(englishContent);
#else
wxString translation = wxGetTranslation( englishContent );
return translation.wc_str();
return wxGetTranslation(englishContent).wc_str();
#endif
}
@ -53,7 +52,6 @@ const wxChar* __fastcall pxGetTranslation( const wxChar* message )
#if _WIN32 || wxMAJOR_VERSION < 3
return wxGetTranslation(message);
#else
wxString translation = wxGetTranslation( message );
return translation.wc_str();
return wxGetTranslation( message ).wc_str();
#endif
}