| 33 | } |
| 34 | |
| 35 | NetForwarderUI::NetForwarderUI(QWidget *parent) : |
| 36 | QWidget(parent), |
| 37 | ui(new Ui::UDPForwarderUI) |
| 38 | { |
| 39 | ui->setupUi(this); |
| 40 | |
| 41 | this->spinner = new WaitingSpinnerWidget(parent); |
| 42 | this->spinner->setLineLength(5); |
| 43 | this->spinner->setInnerRadius(5); |
| 44 | this->ui->spinGrid->addWidget(this->spinner); |
| 45 | |
| 46 | this->connectAll(); |
| 47 | } |
| 48 | |
| 49 | NetForwarderUI::~NetForwarderUI() |
| 50 | { |
nothing calls this directly
no test coverage detected