| 28 | using namespace SigDigger; |
| 29 | |
| 30 | DopplerDialog::DopplerDialog(QWidget *parent) : |
| 31 | QDialog(parent), |
| 32 | ui(new Ui::DopplerDialog) |
| 33 | { |
| 34 | ui->setupUi(this); |
| 35 | this->setWindowFlags( |
| 36 | this->windowFlags() | Qt::Window | Qt::WindowMaximizeButtonHint); |
| 37 | |
| 38 | this->connectAll(); |
| 39 | } |
| 40 | |
| 41 | void |
| 42 | DopplerDialog::connectAll(void) |
nothing calls this directly
no test coverage detected