Turn off escaping names for now.

Fixes: lp:1794816
* https://bugs.launchpad.net/kicad/+bug/1794816
This commit is contained in:
Jeff Young
2018-09-27 17:21:49 +01:00
parent 50b96b406f
commit 5703060d87
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -48,6 +48,8 @@ static const char illegalFileNameChars[] = "\\/:\"<>|";
*/
wxString EscapeString( const wxString& aSource )
{
return aSource;
wxString converted;
for( wxUniChar c: aSource )
@@ -90,6 +92,8 @@ wxString EscapeString( const wxString& aSource )
wxString UnescapeString( const wxString& aSource )
{
return aSource;
wxString converted = aSource;
converted.Replace( "&quot;", "\"" );