Disable enforced slash as the path separator in NETLIST_EXPORTER

It causes issues with files that are stored on network resources and
pointed to using the Windows UNC format.
This commit is contained in:
Maciej Suminski 2017-09-19 12:08:10 +02:00
parent e2d3fcec02
commit 0083ce1bdc
1 changed files with 0 additions and 3 deletions

View File

@ -65,9 +65,6 @@ wxString NETLIST_EXPORTER::MakeCommandLine( const wxString& aFormatString,
ret.Replace( wxT( "%I" ), in.GetFullPath().GetData(), true );
ret.Replace( wxT( "%O" ), out.GetFullPath().GetData(), true );
// Use Unix like notation, which always works
ret.Replace( wxT( "\\" ), "/", true );
return ret;
}