mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-01 16:58:35 +00:00
Improve iterator usage.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5528 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
0d75190af9
commit
ceabf90bda
21 changed files with 1132 additions and 1153 deletions
|
@ -383,7 +383,7 @@ void CCodeWindow::NotifyMapLoaded()
|
|||
//symbols->Show(false); // hide it for faster filling
|
||||
symbols->Freeze(); // HyperIris: wx style fast filling
|
||||
symbols->Clear();
|
||||
for (PPCSymbolDB::XFuncMap::iterator iter = g_symbolDB.GetIterator(); iter != g_symbolDB.End(); iter++)
|
||||
for (PPCSymbolDB::XFuncMap::iterator iter = g_symbolDB.GetIterator(); iter != g_symbolDB.End(); ++iter)
|
||||
{
|
||||
int idx = symbols->Append(wxString::FromAscii(iter->second.name.c_str()));
|
||||
symbols->SetClientData(idx, (void*)&iter->second);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue