summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/BranchWatchTableModel.cpp
diff options
context:
space:
mode:
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);