Move NotifySymbolMapUpdated to System_Notify
This commit is contained in:
parent
dda8635c89
commit
c92a4acb40
11 changed files with 14 additions and 19 deletions
|
@ -47,6 +47,7 @@
|
|||
#include "Core/Config.h"
|
||||
#include "Core/ConfigValues.h"
|
||||
#include "Core/HW/Camera.h"
|
||||
#include "Core/Debugger/SymbolMap.h"
|
||||
|
||||
#include <signal.h>
|
||||
#include <string.h>
|
||||
|
@ -260,6 +261,10 @@ void System_Notify(SystemNotification notification) {
|
|||
g_symbolMap->SortSymbols();
|
||||
mainWindow->Notify(MainWindowMsg::BOOT_DONE);
|
||||
break;
|
||||
case SystemNotification::SYMBOL_MAP_UPDATED:
|
||||
if (g_symbolMap)
|
||||
g_symbolMap->SortSymbols();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue