From 59b2aac1c4190c2ff019493481bdcedd1b579a26 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 4 Feb 2011 11:33:45 +0100 Subject: 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. --- src/plugins/debugger/breakpoint.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/plugins/debugger/breakpoint.cpp') diff --git a/src/plugins/debugger/breakpoint.cpp b/src/plugins/debugger/breakpoint.cpp index 3a98a620c1..413b2f36b9 100644 --- a/src/plugins/debugger/breakpoint.cpp +++ b/src/plugins/debugger/breakpoint.cpp @@ -64,7 +64,8 @@ bool BreakpointParameters::equals(const BreakpointParameters &rhs) const && threadSpec == rhs.threadSpec && functionName == rhs.functionName && tracepoint == rhs.tracepoint - && module == rhs.module; + && module == rhs.module + && command == rhs.command; } bool BreakpointParameters::conditionsMatch(const QByteArray &other) const @@ -90,6 +91,7 @@ QString BreakpointParameters::toString() const ts << " UseFullPath: " << useFullPath; ts << " Tracepoint: " << tracepoint; ts << " Module: " << module; + ts << " Command: " << command; return result; } -- cgit v1.2.1