Replace ':' to '{', '}' for alias in variable path

This commit is contained in:
Josue Huaroto 2023-09-03 20:52:29 +00:00 committed by Wayne Stambaugh
parent d27413a032
commit e7d6c84aef
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -619,9 +619,9 @@ wxString FILENAME_RESOLVER::ShortenPath( const wxString& aFullPathName )
else
{
// new style alias
tname = ":";
tname = "${";
tname.append( sL->m_Alias );
tname.append( wxS( ":" ) );
tname.append( wxS( "}/" ) );
tname.append( fname );
}