1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-17 02:52:12 +01:00

Remove the connection to refreshWidgetValues() in output widget. Mike was

right and it's not needed since hte configTaskWidget takes care of this
connection.
This commit is contained in:
James Cotton 2012-06-11 13:22:37 -05:00
parent 01d47d6373
commit 8b9c7277a6
2 changed files with 0 additions and 9 deletions

View File

@ -71,16 +71,10 @@ ConfigOutputWidget::ConfigOutputWidget(QWidget *parent) : ConfigTaskWidget(paren
connect(m_config->channelOutTest, SIGNAL(toggled(bool)), this, SLOT(runChannelTests(bool)));
firstUpdate = true;
// Configure the task widget
// Connect the help button
connect(m_config->outputHelp, SIGNAL(clicked()), this, SLOT(openHelp()));
// Add custom handling of displaying things
connect(this,SIGNAL(refreshWidgetsValuesRequested()), this, SLOT(refreshWidgetsValues()));
addApplySaveButtons(m_config->saveRCOutputToRAM,m_config->saveRCOutputToSD);
// Track the ActuatorSettings object
@ -125,7 +119,6 @@ ConfigOutputWidget::~ConfigOutputWidget()
*/
void ConfigOutputWidget::runChannelTests(bool state)
{
qDebug()<<"configoutputwidget runChannelTests"<<state;
SystemAlarms * systemAlarmsObj = SystemAlarms::GetInstance(getObjectManager());
SystemAlarms::DataFields systemAlarms = systemAlarmsObj->getData();

View File

@ -63,8 +63,6 @@ private:
UAVObject::Metadata accInitialData;
bool firstUpdate;
bool wasItMe;
private slots:
void stopTests();