mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 00:47:21 -06:00
Don't use deprecated QButtonGroup::buttonClicked()
This commit is contained in:
@@ -100,8 +100,13 @@ PropTabBar::PropTabBar(QWidget *parent)
|
|||||||
addWidget(speedButton);
|
addWidget(speedButton);
|
||||||
m_btnGroup->addButton(speedButton, SpeedTab);
|
m_btnGroup->addButton(speedButton, SpeedTab);
|
||||||
// SIGNAL/SLOT
|
// 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)
|
connect(m_btnGroup, qOverload<int>(&QButtonGroup::buttonClicked)
|
||||||
, this, &PropTabBar::setCurrentIndex);
|
, this, &PropTabBar::setCurrentIndex);
|
||||||
|
#endif
|
||||||
// Disable buttons focus
|
// Disable buttons focus
|
||||||
for (QAbstractButton *btn : asConst(m_btnGroup->buttons()))
|
for (QAbstractButton *btn : asConst(m_btnGroup->buttons()))
|
||||||
btn->setFocusPolicy(Qt::NoFocus);
|
btn->setFocusPolicy(Qt::NoFocus);
|
||||||
|
|||||||
Reference in New Issue
Block a user