summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/breakpoint.cpp')
-rw-r--r--src/plugins/debugger/breakpoint.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/plugins/debugger/breakpoint.cpp b/src/plugins/debugger/breakpoint.cpp
index 5ef9956916..16bcc2b506 100644
--- a/src/plugins/debugger/breakpoint.cpp
+++ b/src/plugins/debugger/breakpoint.cpp
@@ -94,18 +94,6 @@ QString BreakpointModelId::toString() const
return QString::number(m_majorPart);
}
-BreakpointModelId BreakpointModelId::parent() const
-{
- QTC_ASSERT(isMinor(), return BreakpointModelId());
- return BreakpointModelId(m_majorPart, 0);
-}
-
-BreakpointModelId BreakpointModelId::child(int row) const
-{
- QTC_ASSERT(isMajor(), return BreakpointModelId());
- return BreakpointModelId(m_majorPart, row + 1);
-}
-
//////////////////////////////////////////////////////////////////
//