MCPcopy Create free account
hub / github.com/LeFroid/Viper-Browser / AddUserAgentDialog

Method AddUserAgentDialog

src/ui/user_agents/AddUserAgentDialog.cpp:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include <QInputDialog>
5
6AddUserAgentDialog::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
16AddUserAgentDialog::~AddUserAgentDialog()
17{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected