summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakpoint.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-02-04 14:54:09 +0100
committerhjk <hjk@theqtcompany.com>2015-02-04 13:56:24 +0000
commit0b0e6506d3042e6240ef0b5871a1f18700ce839d (patch)
treeddb0e4b86cc33b97ee67ddedc20579842fef4067 /src/plugins/debugger/breakpoint.cpp
parent620d1c36e5a811a269a482edca5eeaa89dbd1ada (diff)
downloadqt-creator-0b0e6506d3042e6240ef0b5871a1f18700ce839d.tar.gz
Debugger: Remove unused code
Change-Id: Icce45f23abc026668531191e95c2e4d93d63fda7 Reviewed-by: hjk <hjk@theqtcompany.com>
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);
-}
-
//////////////////////////////////////////////////////////////////
//