1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

OP-38 GCS/configgadget: Compile fix.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1419 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
ephy 2010-08-26 17:56:19 +00:00 committed by ephy
parent 2589d0d055
commit e353e24796
2 changed files with 2 additions and 3 deletions

View File

@ -35,7 +35,7 @@
#include <QtGui/QVBoxLayout>
#include <QtGui/QPushButton>
const double ConfigAHRSWidget::maxVarValue = 0.1;
ConfigAHRSWidget::ConfigAHRSWidget(QWidget *parent) : ConfigTaskWidget(parent)
{

View File

@ -38,7 +38,6 @@
#include <QList>
#include <QTimer>
class ConfigAHRSWidget: public ConfigTaskWidget
{
Q_OBJECT
@ -64,7 +63,7 @@ private:
int phaseCounter;
int progressBarIndex;
QTimer progressBarTimer;
const static double maxVarValue = 0.1;
const static double maxVarValue;
private slots:
void launchAHRSCalibration();