| 4 | #include <QInputDialog> |
| 5 | |
| 6 | AddUserAgentDialog::AddUserAgentDialog(QWidget *parent) : |
| 7 | QDialog(parent), |
| 8 | ui(new Ui::AddUserAgentDialog) |
| 9 | { |
| 10 | ui->setupUi(this); |
| 11 | |
| 12 | connect(ui->pushButtonAddCategory, &QPushButton::clicked, this, &AddUserAgentDialog::showNewCategoryDialog); |
| 13 | connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &AddUserAgentDialog::userAgentAdded); |
| 14 | } |
| 15 | |
| 16 | AddUserAgentDialog::~AddUserAgentDialog() |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected