summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-06-17 22:36:04 +0200
committerGitHub <noreply@github.com>2024-06-17 22:36:04 +0200
commit69fc754c656a35a1359070c19301dab10819d03c (patch)
tree459cbfe1f458b7e54356306f644c493b6d95f211 /Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp
parent0c2b8fd58787b1aa9e5ee250f885c2691aef492a (diff)
parenteb26937a937c923c06733e90d822a53a354c58c9 (diff)
Merge pull request #12799 from mitaclaw/branch-watch-tool-fixes-3
Branch Watch Tool: Add Set Breakpoints Submenu
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp
index e4d8dd21a2..a377f82c4e 100644
--- a/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp
+++ b/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp
@@ -145,18 +145,6 @@ void BranchWatchTableModel::OnWipeInspection()
roles);
}
-void BranchWatchTableModel::OnDelete(QModelIndexList index_list)
-{
- std::sort(index_list.begin(), index_list.end());
- // TODO C++20: std::ranges::reverse_view
- for (auto iter = index_list.rbegin(); iter != index_list.rend(); ++iter)
- {
- if (!iter->isValid())
- continue;
- removeRow(iter->row());
- }
-}
-
void BranchWatchTableModel::Save(const Core::CPUThreadGuard& guard, std::FILE* file) const
{
m_branch_watch.Save(guard, file);