| 121 | } |
| 122 | |
| 123 | OutputPage::OutputPage(QWidget* parent) |
| 124 | : QWidget(parent) |
| 125 | , d(new OutputPagePrivate(this)) |
| 126 | { |
| 127 | d->output = new Ui::OutputLocationDialog; |
| 128 | d->output->setupUi(this); |
| 129 | d->output->messageWidget->setVisible(false); |
| 130 | |
| 131 | connect(d->output->lowerFilenameCheckBox, &QCheckBox::stateChanged, |
| 132 | this, [&] { d->updateFileNames(); }); |
| 133 | } |
| 134 | |
| 135 | OutputPage::~OutputPage() |
| 136 | { |
nothing calls this directly
no test coverage detected