Coverity fixes.
This commit is contained in:
parent
fb5fef9f5f
commit
1e1da55840
|
@ -879,7 +879,17 @@ void EDA_DRAW_FRAME::FocusOnLocation( const wxPoint& aPos )
|
||||||
}
|
}
|
||||||
|
|
||||||
if( centerView )
|
if( centerView )
|
||||||
GetCanvas()->GetView()->SetCenter( aPos, dialogScreenRects );
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
GetCanvas()->GetView()->SetCenter( aPos, dialogScreenRects );
|
||||||
|
}
|
||||||
|
catch( const ClipperLib::clipperException& exc )
|
||||||
|
{
|
||||||
|
wxLogError( wxT( "Clipper library error '%s' occurred centering object." ),
|
||||||
|
exc.what() );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
GetCanvas()->GetViewControls()->SetCrossHairCursorPosition( aPos );
|
GetCanvas()->GetViewControls()->SetCrossHairCursorPosition( aPos );
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,8 +115,8 @@ void LIB_SHAPE::Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
||||||
wxPoint start = aTransform.TransformCoordinate( m_start ) + aOffset;
|
wxPoint start = aTransform.TransformCoordinate( m_start ) + aOffset;
|
||||||
wxPoint end = aTransform.TransformCoordinate( m_end ) + aOffset;
|
wxPoint end = aTransform.TransformCoordinate( m_end ) + aOffset;
|
||||||
wxPoint center;
|
wxPoint center;
|
||||||
int startAngle;
|
int startAngle = 0;
|
||||||
int endAngle;
|
int endAngle = 0;
|
||||||
int pen_size = GetEffectivePenWidth( aPlotter->RenderSettings() );
|
int pen_size = GetEffectivePenWidth( aPlotter->RenderSettings() );
|
||||||
FILL_T fill = aFill ? m_fill : FILL_T::NO_FILL;
|
FILL_T fill = aFill ? m_fill : FILL_T::NO_FILL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue