1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

SBI: Fix "Proxy Manager" configuration dialog.

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2023-12-05 20:50:29 +01:00
parent 073623fe38
commit 84bda27f30
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B

View File

@ -47,7 +47,7 @@ SBI_NetworkIconDialog::SBI_NetworkIconDialog(QWidget* parent)
connect(ui->addButton, &QAbstractButton::clicked, this, &SBI_NetworkIconDialog::addProxy);
connect(ui->removeButton, &QAbstractButton::clicked, this, &SBI_NetworkIconDialog::removeProxy);
connect(ui->comboBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(showProxy(QString)));
connect(ui->comboBox, &QComboBox::currentTextChanged, this, &SBI_NetworkIconDialog::showProxy);
connect(ui->proxyButtonBox, &QDialogButtonBox::accepted, this, &SBI_NetworkIconDialog::saveProxy);
connect(ui->closeButton, &QDialogButtonBox::clicked, this, &QWidget::close);
}