483 | @@ -483,7 +484,10 @@ void BitcoinGUI::createToolBars()
484 | toolbar->addWidget(spacer);
485 |
486 | m_wallet_selector = new QComboBox();
487 | - connect(m_wallet_selector, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &BitcoinGUI::setCurrentWalletBySelectorIndex);
488 | + connect(m_wallet_selector, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), [this](int index) {
I'm not sure if this lambda makes this any clearer. What's the motivation for this change?