Fix escaping of double quotes in LIB_IDs
This commit is contained in:
parent
cd3b019b43
commit
0458afe20a
|
@ -167,6 +167,8 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
|
||||||
converted += "{gt}";
|
converted += "{gt}";
|
||||||
else if( c == ':' )
|
else if( c == ':' )
|
||||||
converted += "{colon}";
|
converted += "{colon}";
|
||||||
|
else if( c == '\"' )
|
||||||
|
converted += "{dblquote}";
|
||||||
else if( c == '\n' || c == '\r' )
|
else if( c == '\n' || c == '\r' )
|
||||||
converted += ""; // drop
|
converted += ""; // drop
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue