Fix ambiguous cast compiler errors on MSVC
This commit is contained in:
parent
5a8f38952b
commit
0fe2e06949
|
@ -1933,7 +1933,7 @@ bool SIMULATOR_FRAME_UI::loadJsonWorkbook( const wxString& aPath )
|
||||||
else if( cmd == ".probe allp" )
|
else if( cmd == ".probe allp" )
|
||||||
simOptions |= NETLIST_EXPORTER_SPICE::OPTION_SAVE_ALL_DISSIPATIONS;
|
simOptions |= NETLIST_EXPORTER_SPICE::OPTION_SAVE_ALL_DISSIPATIONS;
|
||||||
else
|
else
|
||||||
simCommand += wxString( cmd ).Trim();
|
simCommand += wxString( cmd.get<wxString>() ).Trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
SIM_TAB* simTab = NewSimTab( simCommand );
|
SIM_TAB* simTab = NewSimTab( simCommand );
|
||||||
|
@ -1999,7 +1999,7 @@ bool SIMULATOR_FRAME_UI::loadJsonWorkbook( const wxString& aPath )
|
||||||
if( js.contains( "user_defined_signals" ) )
|
if( js.contains( "user_defined_signals" ) )
|
||||||
{
|
{
|
||||||
for( const nlohmann::json& signal_js : js[ "user_defined_signals" ] )
|
for( const nlohmann::json& signal_js : js[ "user_defined_signals" ] )
|
||||||
m_userDefinedSignals[ii++] = wxString( signal_js );
|
m_userDefinedSignals[ii++] = wxString( signal_js.get<wxString>() );
|
||||||
}
|
}
|
||||||
|
|
||||||
auto addCursor =
|
auto addCursor =
|
||||||
|
@ -2044,7 +2044,7 @@ bool SIMULATOR_FRAME_UI::loadJsonWorkbook( const wxString& aPath )
|
||||||
if( trace_js.contains( "color" ) )
|
if( trace_js.contains( "color" ) )
|
||||||
{
|
{
|
||||||
wxColour color;
|
wxColour color;
|
||||||
color.Set( wxString( trace_js[ "color" ] ) );
|
color.Set( wxString( trace_js["color"].get<wxString>() ) );
|
||||||
trace->SetTraceColour( color );
|
trace->SetTraceColour( color );
|
||||||
plotTab->UpdateTraceStyle( trace );
|
plotTab->UpdateTraceStyle( trace );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue