Browse Source

LIB_IDs can have forward slashes

7.0
Jon Evans 3 years ago
parent
commit
b4e71de89f
  1. 4
      common/string_utils.cpp

4
common/string_utils.cpp

@ -160,9 +160,7 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
}
else if( aContext == CTX_LIBID )
{
if( c == '/' )
converted += wxT( "{slash}" );
else if( c == '\\' )
if( c == '\\' )
converted += wxT( "{backslash}" );
else if( c == '<' )
converted += wxT( "{lt}" );

Loading…
Cancel
Save