Added asserts in spots where DEGREES are not handled.

This commit is contained in:
Maciej Suminski 2015-02-19 16:03:45 +01:00
parent 84517d0e79
commit c2bd2491f1
5 changed files with 36 additions and 0 deletions

View File

@ -146,6 +146,10 @@ wxString ReturnUnitSymbol( EDA_UNITS_T aUnit, const wxString& formatString )
case UNSCALED_UNITS:
break;
case DEGREES:
wxASSERT( false );
break;
}
if( formatString.IsEmpty() )
@ -174,6 +178,10 @@ wxString GetUnitsLabel( EDA_UNITS_T aUnit )
case UNSCALED_UNITS:
label = _( "units" );
break;
case DEGREES:
wxASSERT( false );
break;
}
return label;
@ -196,6 +204,10 @@ wxString GetAbbreviatedUnitsLabel( EDA_UNITS_T aUnit )
case UNSCALED_UNITS:
break;
case DEGREES:
wxASSERT( false );
break;
}
return label;

View File

@ -160,6 +160,10 @@ void SCH_BASE_FRAME::UpdateStatusBar()
absformatter = wxT( "X %f Y %f" );
locformatter = wxT( "dx %f dy %f d %f" );
break;
case DEGREES:
wxASSERT( false );
break;
}
line.Printf( absformatter, dXpos, dYpos );

View File

@ -846,6 +846,10 @@ void GERBVIEW_FRAME::UpdateStatusBar()
case UNSCALED_UNITS:
formatter = wxT( "Ro %f Th %f" );
break;
case DEGREES:
wxASSERT( false );
break;
}
line.Printf( formatter, To_User_Unit( g_UserUnit, ro ), theta );
@ -875,6 +879,10 @@ void GERBVIEW_FRAME::UpdateStatusBar()
absformatter = wxT( "X %f Y %f" );
locformatter = wxT( "dx %f dy %f d %f" );
break;
case DEGREES:
wxASSERT( false );
break;
}
line.Printf( absformatter, dXpos, dYpos );

View File

@ -474,6 +474,10 @@ void PL_EDITOR_FRAME::UpdateStatusBar()
case UNSCALED_UNITS:
SetStatusText( wxEmptyString, 5 );
break;
case DEGREES:
wxASSERT( false );
break;
}
wxString line;

View File

@ -677,6 +677,10 @@ void PCB_BASE_FRAME::UpdateStatusBar()
case UNSCALED_UNITS:
formatter = wxT( "Ro %f Th %f" );
break;
case DEGREES:
wxASSERT( false );
break;
}
line.Printf( formatter, To_User_Unit( g_UserUnit, ro ), theta );
@ -707,6 +711,10 @@ void PCB_BASE_FRAME::UpdateStatusBar()
absformatter = wxT( "X %f Y %f" );
locformatter = wxT( "dx %f dy %f dist %f" );
break;
case DEGREES:
wxASSERT( false );
break;
}
line.Printf( absformatter, dXpos, dYpos );