aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-02 14:41:14 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-02 14:41:14 +0100
commite612e6636b42c24aa2e6b31317b4b49d4416c10e (patch)
tree6e2eddd7bd7ea1811e3453177d2e32ea5182b067 /src/plugins/debugger/debuggerstreamops.cpp
parent285d216beddb9c4d8e65145e13e3e3203f4d615c (diff)
Debugger: Add a module to breakpoint.
To speed up CDB, lldb. Add to dialogs, serialize. Move breakpoint.ui into Debugger::Internal, add buddies. Rubber-stamped-by: hjk
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 1c646aed85..b5c4719105 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -186,6 +186,7 @@ QDataStream &operator<<(QDataStream &stream, const BreakpointParameters &s)
stream << s.functionName;
stream << s.useFullPath;
stream << s.tracepoint;
+ stream << s.module;
return stream;
}
@@ -203,6 +204,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointParameters &s)
stream >> str; s.functionName = str;
stream >> b; s.useFullPath = b;
stream >> b; s.tracepoint = b;
+ stream >> str ; s.module = str;
return stream;
}