debugger: first step to re-enable breakpoint location update.

This commit is contained in:
hjk
2010-11-18 12:30:56 +01:00
parent 203c7a2f11
commit bf1f351f29
4 changed files with 45 additions and 22 deletions

View File

@@ -92,7 +92,7 @@ QString BreakpointParameters::toString() const
//////////////////////////////////////////////////////////////////
BreakpointResponse::BreakpointResponse()
: number(0), pending(true), multiple(false)
: number(0), pending(true), multiple(false), correctedLineNumber(0)
{}
QString BreakpointResponse::toString() const
@@ -104,6 +104,7 @@ QString BreakpointResponse::toString() const
ts << fullName;
ts << multiple;
ts << extra;
ts << correctedLineNumber;
return result + BreakpointParameters::toString();
}
@@ -114,6 +115,7 @@ void BreakpointResponse::fromParameters(const BreakpointParameters &p)
fullName.clear();
multiple = false;
extra.clear();
correctedLineNumber = 0;
}
} // namespace Internal