CodeDiffDialog: Pass QString by const reference to create_item
Avoids churning string copies when updating
This commit is contained in:
parent
c99b0f2eb8
commit
496aea54c0
|
@ -361,7 +361,7 @@ void CodeDiffDialog::Update(bool include)
|
|||
OnExclude();
|
||||
}
|
||||
|
||||
const auto create_item = [](const QString string = {}, const u32 address = 0x00000000) {
|
||||
const auto create_item = [](const QString& string = {}, const u32 address = 0x00000000) {
|
||||
QTableWidgetItem* item = new QTableWidgetItem(string);
|
||||
item->setData(Qt::UserRole, address);
|
||||
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
|
||||
|
|
Loading…
Reference in New Issue