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:
Friedemann Kleint
2011-02-04 11:33:45 +01:00
parent 9c48cd3bf2
commit 59b2aac1c4
9 changed files with 346 additions and 211 deletions

View File

@@ -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;
}