mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-23 16:39:43 +00:00
fix Qt6 deprecation warnings
This commit is contained in:
parent
b25e293cc8
commit
49c72efcd3
12 changed files with 94 additions and 0 deletions
|
@ -60,7 +60,11 @@ void PadMappingDialog::ConnectWidgets()
|
|||
}
|
||||
for (const auto& checkbox : m_gba_boxes)
|
||||
{
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
||||
connect(checkbox, &QCheckBox::checkStateChanged, this, &PadMappingDialog::OnMappingChanged);
|
||||
#else
|
||||
connect(checkbox, &QCheckBox::stateChanged, this, &PadMappingDialog::OnMappingChanged);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue