mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-02 00:26:45 +00:00
Fix Coverity issue #542006.
https://scan8.scan.coverity.com/#/project-view/22886/10844?selectedIssue=542006
This commit is contained in:
parent
5783623c50
commit
dd806aa902
@ -40,7 +40,8 @@ EDA_ITEM::EDA_ITEM( EDA_ITEM* parent, KICAD_T idType, bool isSCH_ITEM, bool isBO
|
||||
m_structType( idType ),
|
||||
m_flags( 0 ),
|
||||
m_parent( parent ),
|
||||
m_forceVisible( false )
|
||||
m_forceVisible( false ),
|
||||
m_isRollover( false )
|
||||
{ }
|
||||
|
||||
|
||||
@ -49,7 +50,8 @@ EDA_ITEM::EDA_ITEM( KICAD_T idType, bool isSCH_ITEM, bool isBOARD_ITEM ) :
|
||||
m_structType( idType ),
|
||||
m_flags( 0 ),
|
||||
m_parent( nullptr ),
|
||||
m_forceVisible( false )
|
||||
m_forceVisible( false ),
|
||||
m_isRollover( false )
|
||||
{ }
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user