diff options
Diffstat (limited to 'src/plugins/debugger/breakpoint.cpp')
-rw-r--r-- | src/plugins/debugger/breakpoint.cpp | 4 |
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; } |