mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-15 15:42:38 +00:00
SignatureDB: const correctness and cleanup
This commit is contained in:
parent
a2cba6d72f
commit
2daf5cb86f
3 changed files with 14 additions and 14 deletions
|
@ -353,7 +353,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event)
|
|||
if (!path.IsEmpty())
|
||||
{
|
||||
SignatureDB db;
|
||||
db.Initialize(&g_symbolDB, prefix);
|
||||
db.Populate(&g_symbolDB, prefix);
|
||||
db.Save(WxStrToStr(path));
|
||||
db.List();
|
||||
}
|
||||
|
@ -376,7 +376,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event)
|
|||
if (!path.IsEmpty())
|
||||
{
|
||||
SignatureDB db;
|
||||
db.Initialize(&g_symbolDB, prefix);
|
||||
db.Populate(&g_symbolDB, prefix);
|
||||
db.List();
|
||||
db.Load(WxStrToStr(path));
|
||||
db.Save(WxStrToStr(path));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue