Fix a minor compil warning.

This commit is contained in:
jean-pierre charras 2018-01-28 14:13:16 +01:00
parent 5d08f1a0d9
commit ce02798533
1 changed files with 1 additions and 2 deletions

View File

@ -38,8 +38,7 @@ ORIGIN_VIEWITEM::ORIGIN_VIEWITEM( const COLOR4D& aColor, MARKER_STYLE aStyle, in
ORIGIN_VIEWITEM::ORIGIN_VIEWITEM( const VECTOR2D& aPosition, STATUS_FLAGS flags ) :
BOARD_ITEM( nullptr, NOT_USED ), // this item is never added to a BOARD so it needs no type
m_size( NOT_USED ), m_color( UNSPECIFIED_COLOR ), m_style( NONE ), m_drawAtZero( false ),
m_position( aPosition )
m_position( aPosition ), m_size( NOT_USED ), m_color( UNSPECIFIED_COLOR ), m_style( NONE ), m_drawAtZero( false )
{
SetFlags( flags );
}