Browse Source

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

newinvert
Josue Huaroto 2 years ago
committed by Wayne Stambaugh
parent
commit
e7d6c84aef
Failed to extract signature
  1. 4
      common/filename_resolver.cpp

4
common/filename_resolver.cpp

@ -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 );
}

Loading…
Cancel
Save