Fix missing variable initialization.
(cherry picked from commit b401c214f5
)
This commit is contained in:
parent
61b741c34e
commit
d915ddc647
|
@ -80,7 +80,8 @@ static TOOL_ACTION ACT_AmplDecrease( "pcbnew.LengthTuner.AmplDecrease",
|
||||||
|
|
||||||
|
|
||||||
LENGTH_TUNER_TOOL::LENGTH_TUNER_TOOL() :
|
LENGTH_TUNER_TOOL::LENGTH_TUNER_TOOL() :
|
||||||
TOOL_BASE( "pcbnew.LengthTuner" )
|
TOOL_BASE( "pcbnew.LengthTuner" ),
|
||||||
|
m_inLengthTuner( false )
|
||||||
{
|
{
|
||||||
// set the initial tune mode for the settings dialog,
|
// set the initial tune mode for the settings dialog,
|
||||||
// in case the dialog is opened before the tool is activated the first time
|
// in case the dialog is opened before the tool is activated the first time
|
||||||
|
|
Loading…
Reference in New Issue