forked from qt-creator/qt-creator
debugger: small usability fixes for dissassembler, breakpoint view, location
This commit is contained in:
@@ -74,13 +74,13 @@ QString BreakpointParameters::toString() const
|
||||
{
|
||||
QString result;
|
||||
QTextStream ts(&result);
|
||||
ts << fileName;
|
||||
ts << condition;
|
||||
ts << ignoreCount;
|
||||
ts << lineNumber;
|
||||
ts << address;
|
||||
ts << functionName;
|
||||
ts << useFullPath;
|
||||
ts << " FileName: " << fileName;
|
||||
ts << " Condition: " << condition;
|
||||
ts << " IgnoreCount: " << ignoreCount;
|
||||
ts << " LineNumber: " << lineNumber;
|
||||
ts << " Address: " << address;
|
||||
ts << " FunctionName: " << functionName;
|
||||
ts << " UseFullPath: " << useFullPath;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -99,12 +99,12 @@ QString BreakpointResponse::toString() const
|
||||
{
|
||||
QString result;
|
||||
QTextStream ts(&result);
|
||||
ts << number;
|
||||
ts << pending;
|
||||
ts << fullName;
|
||||
ts << multiple;
|
||||
ts << extra;
|
||||
ts << correctedLineNumber;
|
||||
ts << " Number: " << number;
|
||||
ts << " Pending: " << pending;
|
||||
ts << " FullName: " << fullName;
|
||||
ts << " Multiple: " << multiple;
|
||||
ts << " Extra: " << extra;
|
||||
ts << " CorrectedLineNumber: " << correctedLineNumber;
|
||||
return result + BreakpointParameters::toString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user