1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

OP-1150: Fix start button not enabled due to uninitialized member variables;

This commit is contained in:
Alessio Morale 2014-02-07 11:17:09 +01:00
parent 7dc358ecae
commit 679e800d48

View File

@ -35,6 +35,9 @@
namespace OpenPilot {
ThermalCalibrationModel::ThermalCalibrationModel(QObject *parent) :
WizardModel(parent),
m_startEnabled(false),
m_cancelEnabled(false),
m_endEnabled(false),
m_initDone(false)
{
m_helper.reset(new ThermalCalibrationHelper());