Improve message displayed when resolver encounters a non-existent alias

This commit is contained in:
Cirilo Bernardo 2016-01-23 16:09:42 +11:00
parent 7c829c9e84
commit 81f95a8dbc
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ wxString S3D_FILENAME_RESOLVER::ResolvePath( const wxString& aFileName )
m_errflags |= ERRFLG_ALIAS;
wxString errmsg = _( "No such path; ensure the path alias is defined" );
errmsg.append( "\n" );
errmsg.append( tname );
errmsg.append( tname.substr( 1 ) );
wxMessageBox( errmsg, _( "3D file resolver" ) );
}