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