diff options
| author | mitaclaw <140017135+mitaclaw@users.noreply.github.com> | 2024-03-16 23:05:56 -0700 |
|---|---|---|
| committer | mitaclaw <140017135+mitaclaw@users.noreply.github.com> | 2024-03-28 09:57:22 -0700 |
| commit | b52a08d5332949c3b22f8434155cc8095d94df3a (patch) | |
| tree | 7c62fcc63540d0c1bce670b43f96ffe10ef6ca5f /Source/Android/jni/MainAndroid.cpp | |
| parent | 1efda863e47b690f460f069502a4391b3c7d87c4 (diff) | |
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.
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 5f8f71a08b..792a911044 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -96,7 +96,7 @@ std::vector<std::string> Host_GetPreferredLocales() return {}; } -void Host_NotifyMapLoaded() +void Host_PPCSymbolsChanged() { } |
