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