mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Source: Remove redundant lambda parameter lists
This commit is contained in:
@ -210,7 +210,7 @@ void SkylanderModifyDialog::PopulateSkylanderOptions(QVBoxLayout* layout)
|
||||
layout->addLayout(hbox_last_reset);
|
||||
layout->addLayout(hbox_last_placed);
|
||||
|
||||
connect(m_buttons, &QDialogButtonBox::accepted, this, [=, this]() {
|
||||
connect(m_buttons, &QDialogButtonBox::accepted, this, [=, this] {
|
||||
if (!edit_money->hasAcceptableInput())
|
||||
{
|
||||
QMessageBox::warning(this, tr("Incorrect money value!"),
|
||||
@ -323,7 +323,7 @@ bool SkylanderModifyDialog::PopulateTrophyOptions(QVBoxLayout* layout)
|
||||
layout->addLayout(hbox);
|
||||
}
|
||||
|
||||
connect(m_buttons, &QDialogButtonBox::accepted, this, [=, this]() {
|
||||
connect(m_buttons, &QDialogButtonBox::accepted, this, [=, this] {
|
||||
m_figure_data.trophy_data.unlocked_villains = 0x0;
|
||||
for (size_t i = 0; i < MAX_VILLAINS; ++i)
|
||||
m_figure_data.trophy_data.unlocked_villains |=
|
||||
|
Reference in New Issue
Block a user