mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Add const and ref for loops
This commit is contained in:
parent
3aefd14b3d
commit
b4a97c99d8
5 changed files with 15 additions and 19 deletions
|
|
@ -185,7 +185,7 @@ void save_data_list_dialog::UpdateList()
|
|||
QVariantMap currNotes = m_gui_settings->GetValue(gui::m_saveNotes).toMap();
|
||||
|
||||
int row = 0;
|
||||
for (SaveDataEntry entry: m_save_entries)
|
||||
for (const SaveDataEntry& entry: m_save_entries)
|
||||
{
|
||||
QString title = qstr(entry.title);
|
||||
QString subtitle = qstr(entry.subtitle);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue