mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-05 11:24:15 +00:00
Don't use deprecated QButtonGroup::buttonClicked()
This commit is contained in:
parent
2fd4381398
commit
547982c741
@ -100,8 +100,13 @@ PropTabBar::PropTabBar(QWidget *parent)
|
||||
addWidget(speedButton);
|
||||
m_btnGroup->addButton(speedButton, SpeedTab);
|
||||
// SIGNAL/SLOT
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
|
||||
connect(m_btnGroup, &QButtonGroup::idClicked
|
||||
, this, &PropTabBar::setCurrentIndex);
|
||||
#else
|
||||
connect(m_btnGroup, qOverload<int>(&QButtonGroup::buttonClicked)
|
||||
, this, &PropTabBar::setCurrentIndex);
|
||||
#endif
|
||||
// Disable buttons focus
|
||||
for (QAbstractButton *btn : asConst(m_btnGroup->buttons()))
|
||||
btn->setFocusPolicy(Qt::NoFocus);
|
||||
|
Loading…
x
Reference in New Issue
Block a user