From f6e4e72ec237b7e1d8a2a588c990e55b21941975 Mon Sep 17 00:00:00 2001 From: m_thread Date: Wed, 1 Oct 2014 15:10:22 +0200 Subject: [PATCH] OP-1517 Fixed a static declaration issue. --- .../src/plugins/setupwizard/pages/esccalibrationpage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/openpilotgcs/src/plugins/setupwizard/pages/esccalibrationpage.h b/ground/openpilotgcs/src/plugins/setupwizard/pages/esccalibrationpage.h index 6f4657fab..f6217e8a9 100644 --- a/ground/openpilotgcs/src/plugins/setupwizard/pages/esccalibrationpage.h +++ b/ground/openpilotgcs/src/plugins/setupwizard/pages/esccalibrationpage.h @@ -49,8 +49,8 @@ private slots: void enableButtons(bool enable); private: - const int LOW_PWM_OUTPUT_PULSE_LENGTH_MICROSECONDS = 1000; - const int HIGH_PWM_OUTPUT_PULSE_LENGTH_MICROSECONDS = 2000; + static const int LOW_PWM_OUTPUT_PULSE_LENGTH_MICROSECONDS = 1000; + static const int HIGH_PWM_OUTPUT_PULSE_LENGTH_MICROSECONDS = 2000; Ui::EscCalibrationPage *ui; bool m_isCalibrating;