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
)
8 disableMouseWheelEvents();
11 FailsafeChannelForm::~FailsafeChannelForm()
16 QString
FailsafeChannelForm::name()
18 return ui
->channelName
->text();
21 void FailsafeChannelForm::setName(const QString
&name
)
23 ui
->channelName
->setText(name
);