From e612e6636b42c24aa2e6b31317b4b49d4416c10e Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 2 Feb 2011 14:41:14 +0100 Subject: 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 --- src/plugins/debugger/debuggerstreamops.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/plugins/debugger/debuggerstreamops.cpp') 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; } -- cgit v1.2.1