Commit abd7e400 authored by raburton's avatar raburton

removed a couple of trivial build warnings

parent bf338ea7
...@@ -392,8 +392,6 @@ bool WinEDA_DrcFrame::ProcessEvent( wxEvent& event ) ...@@ -392,8 +392,6 @@ bool WinEDA_DrcFrame::ProcessEvent( wxEvent& event )
if( wxTE_HT_UNKNOWN != m_logWindow->HitTest( pos, &col, &row ) ) if( wxTE_HT_UNKNOWN != m_logWindow->HitTest( pos, &col, &row ) )
{ {
wxString text = m_logWindow->GetLineText( row ); wxString text = m_logWindow->GetLineText( row );
int debug = 1;
} }
} }
} }
......
...@@ -249,7 +249,7 @@ void WinEDA_ZoneFrame::CreateControls() ...@@ -249,7 +249,7 @@ void WinEDA_ZoneFrame::CreateControls()
static const int GridList[4] = { 50, 100, 250, 500 }; static const int GridList[4] = { 50, 100, 250, 500 };
int selection = 0; int selection = 0;
for( unsigned ii = 0; ii < m_GridCtrl->GetCount(); ii++ ) for( int ii = 0; ii < m_GridCtrl->GetCount(); ii++ )
{ {
wxString msg = ReturnStringFromValue( g_UnitMetric, wxString msg = ReturnStringFromValue( g_UnitMetric,
GridList[ii], GridList[ii],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment