| 22 | using namespace SigDigger; |
| 23 | |
| 24 | QuickConnectDialog::QuickConnectDialog(QWidget *parent) : |
| 25 | QDialog(parent), |
| 26 | ui(new Ui::QuickConnectDialog) |
| 27 | { |
| 28 | ui->setupUi(this); |
| 29 | |
| 30 | this->setWindowFlags( |
| 31 | this->windowFlags() & ~Qt::WindowMaximizeButtonHint); |
| 32 | } |
| 33 | |
| 34 | void |
| 35 | QuickConnectDialog::setProfile(Suscan::Source::Config const &prof) |
nothing calls this directly
no outgoing calls
no test coverage detected