From b52a08d5332949c3b22f8434155cc8095d94df3a Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Sat, 16 Mar 2024 23:05:56 -0700 Subject: DolphinQt: A Ubiquitous Signal For When Symbols Change There were three distinct mechanisms for signaling symbol changes in DolphinQt: `Host::NotifyMapLoaded`, `MenuBar::NotifySymbolsUpdated`, and `CodeViewWidget::SymbolsChanged`. The behavior of these signals has been consolidated into the new `Host::PPCSymbolsUpdated` signal, which can be emitted from anywhere in DolphinQt to properly update symbols everywhere in DolphinQt. --- Source/Core/DolphinNoGUI/MainNoGUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp') diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 6a0dfd630f..6cbb2750d2 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -57,7 +57,7 @@ std::vector Host_GetPreferredLocales() return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } -- cgit v1.2.3