aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-12-16 17:58:43 +0100
committerhjk <qtc-committer@nokia.com>2010-12-17 11:59:01 +0100
commit39c145bf93f06c4b4148e259086b9b583a144ca0 (patch)
tree858ca9390ae8a0efcf192513d1d2d9f51b8ddee5 /src/plugins/debugger/debuggerstreamops.cpp
parent2074ce8f4df18b02d6cc9adda58bf0f4be775c54 (diff)
debugger: more tracepoint stuff
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 067eab308a..7dff5b22bf 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -175,6 +175,7 @@ QDataStream &operator<<(QDataStream &stream, const BreakpointParameters &s)
stream << quint64(s.address);
stream << s.functionName;
stream << s.useFullPath;
+ stream << s.tracepoint;
return stream;
}
@@ -191,6 +192,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointParameters &s)
stream >> t; s.address = t;
stream >> str; s.functionName = str;
stream >> b; s.useFullPath = b;
+ stream >> b; s.tracepoint = b;
return stream;
}