forked from qt-creator/qt-creator
Debugger: Remove unused code
Change-Id: Icce45f23abc026668531191e95c2e4d93d63fda7 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user