| 10 | #include "ui_inputdialog.h" |
| 11 | |
| 12 | InputDialog::InputDialog(QWidget *parent) : |
| 13 | QDialog(parent), |
| 14 | ui(new Ui::InputDialog) |
| 15 | { |
| 16 | ui->setupUi(this); |
| 17 | setWindowTitle(tr("插入")); |
| 18 | setFixedSize(this->size()); |
| 19 | } |
| 20 | |
| 21 | InputDialog::~InputDialog() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected