mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
DolphinQt2: Resolve unused lambda capture warnings
Resolves -Wunused-lambda-capture warnings.
This commit is contained in:
@ -143,7 +143,7 @@ void BreakpointWidget::Update()
|
||||
int i = 0;
|
||||
m_table->setRowCount(i);
|
||||
|
||||
auto create_item = [this](const QString string = QStringLiteral("")) {
|
||||
auto create_item = [](const QString string = QStringLiteral("")) {
|
||||
QTableWidgetItem* item = new QTableWidgetItem(string);
|
||||
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
|
||||
return item;
|
||||
|
Reference in New Issue
Block a user