mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-12 01:24:28 -04:00
[partition] Idiomatic connect() usage
This commit is contained in:
parent
fbef117fc8
commit
24422b19bd
1 changed files with 2 additions and 2 deletions
|
@ -289,7 +289,7 @@ ChoicePage::setupChoices()
|
||||||
|
|
||||||
m_itemsLayout->addStretch();
|
m_itemsLayout->addStretch();
|
||||||
|
|
||||||
connect( m_grp, static_cast< void( QButtonGroup::* )( int, bool ) >( &QButtonGroup::buttonToggled ),
|
connect( m_grp, QOverload<int, bool>::of( &QButtonGroup::buttonToggled ),
|
||||||
this, [ this ]( int id, bool checked )
|
this, [ this ]( int id, bool checked )
|
||||||
{
|
{
|
||||||
if ( checked ) // An action was picked.
|
if ( checked ) // An action was picked.
|
||||||
|
@ -1206,7 +1206,7 @@ ChoicePage::createBootloaderComboBox( QWidget* parent )
|
||||||
bcb->setModel( m_core->bootLoaderModel() );
|
bcb->setModel( m_core->bootLoaderModel() );
|
||||||
|
|
||||||
// When the chosen bootloader device changes, we update the choice in the PCM
|
// When the chosen bootloader device changes, we update the choice in the PCM
|
||||||
connect( bcb, static_cast< void (QComboBox::*)(int) >( &QComboBox::currentIndexChanged ),
|
connect( bcb, QOverload<int>::of( &QComboBox::currentIndexChanged ),
|
||||||
this, [this]( int newIndex )
|
this, [this]( int newIndex )
|
||||||
{
|
{
|
||||||
QComboBox* bcb = qobject_cast< QComboBox* >( sender() );
|
QComboBox* bcb = qobject_cast< QComboBox* >( sender() );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue