18 lines
366 B
C++
18 lines
366 B
C++
#include "singlerelay.h"
|
|
#include "ui_singlerelay.h"
|
|
|
|
SingleRelay::SingleRelay(QWidget *parent)
|
|
: QDialog(parent)
|
|
, ui(new Ui::SingleRelay) {
|
|
ui->setupUi(this);
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
}
|
|
|
|
SingleRelay::~SingleRelay() {
|
|
delete ui;
|
|
}
|
|
|
|
void SingleRelay::on_pushButton_cancel_clicked() {
|
|
this->close();
|
|
}
|