unused lambda capture removed

This commit is contained in:
Uwe Rathmann 2022-04-22 08:39:01 +02:00
parent 019a6899db
commit bce7d6e1dc

View File

@ -160,7 +160,7 @@ void QskCheckBox::addToGroup( QskCheckBox* groupItem )
} ); } );
connect( groupItem, &QskAbstractButton::toggled, connect( groupItem, &QskAbstractButton::toggled,
this, [ this, groupItem ]( bool toggled ) this, [ this ]( bool toggled )
{ {
m_data->groupItemsChecked += toggled ? 1 : -1; m_data->groupItemsChecked += toggled ? 1 : -1;
updated(); updated();