MCPcopy Create free account
hub / github.com/Project-LemonLime/Project_LemonLime / EditVariableDialog

Method EditVariableDialog

src/editvariabledialog.cpp:15–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13#include <QPushButton>
14
15EditVariableDialog::EditVariableDialog(QWidget *parent) : QDialog(parent), ui(new Ui::EditVariableDialog) {
16 ui->setupUi(this);
17 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
18 connect(ui->variableName, &QLineEdit::textChanged, this, &EditVariableDialog::textChanged);
19 connect(ui->variableValue, &QLineEdit::textChanged, this, &EditVariableDialog::textChanged);
20}
21
22EditVariableDialog::~EditVariableDialog() { delete ui; }
23

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected