| 25 | using namespace SigDigger; |
| 26 | |
| 27 | SaveProfileDialog::SaveProfileDialog(QWidget *parent) : |
| 28 | QDialog(parent), |
| 29 | ui(new Ui::SaveProfileDialog) |
| 30 | { |
| 31 | ui->setupUi(this); |
| 32 | |
| 33 | connect( |
| 34 | this->ui->profileNameLabel, |
| 35 | SIGNAL(textChanged(const QString &)), |
| 36 | this, |
| 37 | SLOT(onTextChanged())); |
| 38 | |
| 39 | this->onTextChanged(); |
| 40 | } |
| 41 | |
| 42 | SaveProfileDialog::~SaveProfileDialog() |
| 43 | { |
nothing calls this directly
no test coverage detected