Browse Source
Replace ':' to '{', '}' for alias in variable path
newinvert
Josue Huaroto
2 years ago
committed by
Wayne Stambaugh
Failed to extract signature
1 changed files with
2 additions and
2 deletions
-
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 ); |
|
|
|
} |
|
|
|
|
|
|
|
|