forked from qt-creator/qt-creator
Debugger: Add 'command[s]' to breakpoints, polish BP dialogs.
Add commands (CDB, gdb with '\n' delimiter for multiple), rearrange dialogs, make ignore count a spin box.
This commit is contained in:
@@ -106,6 +106,8 @@ QByteArray cdbAddBreakpointCommand(const BreakpointParameters &bpIn,
|
||||
if (bp.ignoreCount)
|
||||
str << ' ' << (bp.ignoreCount + 1);
|
||||
// Condition currently unsupported.
|
||||
if (!bp.command.isEmpty())
|
||||
str << " \"" << bp.command << '"';
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user