aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.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/debuggerstreamops.cpp
parent9c48cd3bf2e4c8f037a87ea22de3227588220613 (diff)
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/debuggerstreamops.cpp')
-rw-r--r--src/plugins/debugger/debuggerstreamops.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerstreamops.cpp b/src/plugins/debugger/debuggerstreamops.cpp
index b5c4719105..d95f592b88 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -187,6 +187,7 @@ QDataStream &operator<<(QDataStream &stream, const BreakpointParameters &s)
stream << s.useFullPath;
stream << s.tracepoint;
stream << s.module;
+ stream << s.command;
return stream;
}
@@ -205,6 +206,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointParameters &s)
stream >> b; s.useFullPath = b;
stream >> b; s.tracepoint = b;
stream >> str ; s.module = str;
+ stream >> str ; s.command = str;
return stream;
}