summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2024-09-26 18:20:43 -0400
committerGitHub <noreply@github.com>2024-09-26 18:20:43 -0400
commitd4d3acb79637b683fcd2ce52f420200fb70b87c9 (patch)
treeaadb6f66603d616dde5eb7ac20a61c1b91b80289 /Source/Core/DolphinQt/Debugger/CodeWidget.cpp
parent0d7e94e8b3019a3eeffe0b1f454ece1342c0911e (diff)
parent4f821f43323b0ab23c965941b06d1f8337fc3367 (diff)
Merge pull request #13065 from mitaclaw/ppc-breakpoints-signal
DolphinQt: A Ubiquitous Signal For When Breakpoints Change
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/CodeWidget.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
index 5c92975f39..681f14286c 100644
--- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
@@ -190,8 +190,6 @@ void CodeWidget::ConnectWidgets()
&CodeWidget::OnSelectFunctionCallers);
connect(Host::GetInstance(), &Host::PPCSymbolsChanged, this, &CodeWidget::OnPPCSymbolsChanged);
- connect(m_code_view, &CodeViewWidget::BreakpointsChanged, this,
- [this] { emit BreakpointsChanged(); });
connect(m_code_view, &CodeViewWidget::UpdateCodeWidget, this, &CodeWidget::Update);
connect(m_code_view, &CodeViewWidget::RequestPPCComparison, this,