mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fix build error
std::string does not have a overload for appending a wchar
This commit is contained in:
parent
57ad779797
commit
19e4c3f498
@ -529,7 +529,7 @@ void NETLIST_EXPORTER_SPICE::readModel( const std::vector<SCH_FIELD>& aFields, S
|
||||
wxFileName cacheFn;
|
||||
cacheFn.AssignDir( PATHS::GetUserCachePath() );
|
||||
cacheFn.AppendDir( wxT( "ibis" ) );
|
||||
cacheFn.SetFullName( aItem.refName + wxT( ".cache" ) );
|
||||
cacheFn.SetFullName( aItem.refName + ".cache" );
|
||||
|
||||
wxFile cacheFile( cacheFn.GetFullPath(), wxFile::write );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user