From 48d04d73d4954611ac07cc3ec4f1321c998f426a Mon Sep 17 00:00:00 2001 From: edouard Date: Thu, 26 Aug 2010 21:51:55 +0000 Subject: [PATCH] OP-38 Forgot to connect the signals, sorry... git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1424 ebee16cc-31ac-478f-84a7-5cbb03baadba --- ground/src/plugins/config/configahrswidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ground/src/plugins/config/configahrswidget.cpp b/ground/src/plugins/config/configahrswidget.cpp index a32d9a90c..31e5dbd93 100644 --- a/ground/src/plugins/config/configahrswidget.cpp +++ b/ground/src/plugins/config/configahrswidget.cpp @@ -174,6 +174,8 @@ ConfigAHRSWidget::ConfigAHRSWidget(QWidget *parent) : ConfigTaskWidget(parent) // Connect the signals connect(m_ahrs->ahrsCalibStart, SIGNAL(clicked()), this, SLOT(launchAHRSCalibration())); connect(m_ahrs->ahrsSettingsRequest, SIGNAL(clicked()), this, SLOT(ahrsSettingsRequest())); + connect(m_ahrs->ahrsSettingsSaveRAM, SIGNAL(clicked()), this, SLOT(ahrsSettingsSaveRAM())); + connect(m_ahrs->ahrsSettingsSaveSD, SIGNAL(clicked()), this, SLOT(ahrsSettingsSaveSD())); connect(parent, SIGNAL(autopilotConnected()),this, SLOT(ahrsSettingsRequest()));