Commit c2bd2491 authored by Maciej Suminski's avatar Maciej Suminski
Browse files

Added asserts in spots where DEGREES are not handled.

parent 84517d0e
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -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;
+4 −0
Original line number Diff line number Diff line
@@ -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 );
+8 −0
Original line number Diff line number Diff line
@@ -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 );
+4 −0
Original line number Diff line number Diff line
@@ -474,6 +474,10 @@ void PL_EDITOR_FRAME::UpdateStatusBar()
    case UNSCALED_UNITS:
        SetStatusText( wxEmptyString, 5 );
        break;

    case DEGREES:
        wxASSERT( false );
        break;
    }

    wxString line;
+8 −0
Original line number Diff line number Diff line
@@ -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 );