Improve message displayed when resolver encounters a non-existent alias
This commit is contained in:
parent
7c829c9e84
commit
81f95a8dbc
|
@ -352,7 +352,7 @@ wxString S3D_FILENAME_RESOLVER::ResolvePath( const wxString& aFileName )
|
||||||
m_errflags |= ERRFLG_ALIAS;
|
m_errflags |= ERRFLG_ALIAS;
|
||||||
wxString errmsg = _( "No such path; ensure the path alias is defined" );
|
wxString errmsg = _( "No such path; ensure the path alias is defined" );
|
||||||
errmsg.append( "\n" );
|
errmsg.append( "\n" );
|
||||||
errmsg.append( tname );
|
errmsg.append( tname.substr( 1 ) );
|
||||||
wxMessageBox( errmsg, _( "3D file resolver" ) );
|
wxMessageBox( errmsg, _( "3D file resolver" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue