fix bug: EDA_ITEM::m_forceVisible not initialized in constructor.

This commit is contained in:
jean-pierre charras 2011-12-18 16:26:09 +01:00
parent a180518f4b
commit 018ffe7eac
1 changed files with 3 additions and 1 deletions

View File

@ -87,6 +87,8 @@ void EDA_ITEM::InitVars()
SetTimeStamp( 0 ); // Time stamp used for logical links
m_Status = 0;
m_Selected = 0; // Used by block commands, and selective editing
m_forceVisible = false; // true to override the visibility setting of the item.
}