| 10 | #include "ui_valuedialog.h" |
| 11 | |
| 12 | ValueDialog::ValueDialog(QWidget *parent) : |
| 13 | QDialog(parent), |
| 14 | ui(new Ui::ValueDialog) |
| 15 | { |
| 16 | ui->setupUi(this); |
| 17 | setWindowTitle(tr("查看")); |
| 18 | ui->_radioButtonJson->setChecked(false); |
| 19 | ui->_radioButtonText->setChecked(true); |
| 20 | ui->_radioButtonXml->setChecked(false); |
| 21 | } |
| 22 | |
| 23 | ValueDialog::~ValueDialog() |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected