debugger: looks like the BreakpointData layer is going to be unneeded.

This commit is contained in:
hjk
2010-11-16 11:06:09 +01:00
parent 3cf3f14d7f
commit 694503cc76
6 changed files with 33 additions and 45 deletions

View File

@@ -119,10 +119,10 @@ bool BreakpointData::setCondition(const QByteArray &cond)
#undef SETIT
bool BreakpointData::conditionsMatch(const QByteArray &other) const
bool BreakpointParameters::conditionsMatch(const QByteArray &other) const
{
// Some versions of gdb "beautify" the passed condition.
QByteArray s1 = m_parameters.condition;
QByteArray s1 = condition;
s1.replace(' ', "");
QByteArray s2 = other;
s2.replace(' ', "");