mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-21 07:57:22 -06:00
Migrate away from obsoleted functions
This commit is contained in:
@@ -69,8 +69,13 @@ UpDownRatioDialog::UpDownRatioDialog(bool useDefault, qreal initialRatioValue,
|
|||||||
m_ui->timeSpinBox->setMaximum(maxTimeValue);
|
m_ui->timeSpinBox->setMaximum(maxTimeValue);
|
||||||
m_ui->timeSpinBox->setValue(initialTimeValue);
|
m_ui->timeSpinBox->setValue(initialTimeValue);
|
||||||
|
|
||||||
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
|
||||||
|
connect(m_ui->buttonGroup, &QButtonGroup::idClicked
|
||||||
|
, this, &UpDownRatioDialog::handleRatioTypeChanged);
|
||||||
|
#else
|
||||||
connect(m_ui->buttonGroup, qOverload<int>(&QButtonGroup::buttonClicked)
|
connect(m_ui->buttonGroup, qOverload<int>(&QButtonGroup::buttonClicked)
|
||||||
, this, &UpDownRatioDialog::handleRatioTypeChanged);
|
, this, &UpDownRatioDialog::handleRatioTypeChanged);
|
||||||
|
#endif
|
||||||
connect(m_ui->checkMaxRatio, &QCheckBox::toggled, this, &UpDownRatioDialog::enableRatioSpin);
|
connect(m_ui->checkMaxRatio, &QCheckBox::toggled, this, &UpDownRatioDialog::enableRatioSpin);
|
||||||
connect(m_ui->checkMaxTime, &QCheckBox::toggled, this, &UpDownRatioDialog::enableTimeSpin);
|
connect(m_ui->checkMaxTime, &QCheckBox::toggled, this, &UpDownRatioDialog::enableTimeSpin);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user