summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakpoint.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-04 11:33:45 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-04 11:37:01 +0100
commit59b2aac1c4190c2ff019493481bdcedd1b579a26 (patch)
treee25cdf2574a406035b729dcf9f9597729c0f6eec /src/plugins/debugger/breakpoint.cpp
parent9c48cd3bf2e4c8f037a87ea22de3227588220613 (diff)
downloadqt-creator-59b2aac1c4190c2ff019493481bdcedd1b579a26.tar.gz
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.
Diffstat (limited to 'src/plugins/debugger/breakpoint.cpp')
-rw-r--r--src/plugins/debugger/breakpoint.cpp4
1 files changed, 3 insertions, 1 deletions
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;
}