mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
CodeDiffDialog: Pass QString by const reference to create_item
Avoids churning string copies when updating
This commit is contained in:
parent
c99b0f2eb8
commit
496aea54c0
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue