mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fix a couple of uninitialized variables (from Coverity scan).
This commit is contained in:
parent
0fd68dad62
commit
88eab8134e
@ -119,6 +119,7 @@ private:
|
||||
SCH_EDIT_TOOL::SCH_EDIT_TOOL() :
|
||||
EE_TOOL_BASE<SCH_EDIT_FRAME>( "eeschema.InteractiveEdit" )
|
||||
{
|
||||
m_pickerItem = nullptr;
|
||||
}
|
||||
|
||||
|
||||
|
@ -73,6 +73,8 @@ TOOL_BASE::TOOL_BASE( const std::string& aToolName ) :
|
||||
|
||||
m_endItem = nullptr;
|
||||
m_gridHelper = nullptr;
|
||||
|
||||
m_cancelled = false;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user