Simulator fixes for Windows

This commit is contained in:
Maciej Suminski
2016-08-11 14:41:41 +02:00
parent 9acdedcb85
commit 6bfe6342fc
4 changed files with 34 additions and 4 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ void SIM_PLOT_FRAME::NewPlotPanel( SIM_TYPE aSimType )
SIM_PLOT_PANEL* plot = new SIM_PLOT_PANEL( aSimType, m_plotNotebook, wxID_ANY );
m_plotNotebook->AddPage( plot,
wxString::Format( wxT( "Plot%lu" ), m_plotNotebook->GetPageCount() + 1 ), true );
wxString::Format( wxT( "Plot%u" ), (unsigned int) m_plotNotebook->GetPageCount() + 1 ), true );
}