LIB_IDs can have forward slashes
This commit is contained in:
parent
91358dfcac
commit
b4e71de89f
|
@ -160,9 +160,7 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
|
||||||
}
|
}
|
||||||
else if( aContext == CTX_LIBID )
|
else if( aContext == CTX_LIBID )
|
||||||
{
|
{
|
||||||
if( c == '/' )
|
if( c == '\\' )
|
||||||
converted += wxT( "{slash}" );
|
|
||||||
else if( c == '\\' )
|
|
||||||
converted += wxT( "{backslash}" );
|
converted += wxT( "{backslash}" );
|
||||||
else if( c == '<' )
|
else if( c == '<' )
|
||||||
converted += wxT( "{lt}" );
|
converted += wxT( "{lt}" );
|
||||||
|
|
Loading…
Reference in New Issue