Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / plugins / config / failsafechannelform.cpp
blob5db5fdf0c744466f56191903aa25ac929b4f5271
1 #include "failsafechannelform.h"
2 #include "ui_failsafechannelform.h"
4 FailsafeChannelForm::FailsafeChannelForm(const int index, QWidget *parent) :
5 ChannelForm(index, parent), ui(new Ui::FailsafeChannelForm)
7 ui->setupUi(this);
8 disableMouseWheelEvents();
11 FailsafeChannelForm::~FailsafeChannelForm()
13 delete ui;
16 QString FailsafeChannelForm::name()
18 return ui->channelName->text();
21 void FailsafeChannelForm::setName(const QString &name)
23 ui->channelName->setText(name);